I have that bit of code from another project:
- Code: Select all
if (score.textNumber>=130)
CreateActor("tin", "tinmedall", "no parent", "no path", 0, 14, true);
else if (score.textNumber<130)
CreateActor("g", "gameover", "no parent", "no path", 2, -6, true);
But it would probably be need to be adjusted. Which would be the right code for these multiple options?