So I'm wondering is there a way to use the for statement in conjunction with a global number variable to set it so that, for every let's say 1000 points (or otherwise everytime 1000 points is added to score, or for every 1000 points added to score) go to next layout? I basically just want a level change that is based on accumulated score.
like plinkie said if u want it to be each 1000 points then u can simply do that by having 2 variables 1 stage/level one being score
and then u compare
score = stage*1000 set stage to stage+1
thats it.
if u want a different limit for each stage then u need a extra variable to replace the 1000 value and then u have lets say pointstonextlevel
Condition 1
everytick
set pointstonextlevel to stage*(pointstonextlevel*1.3) (that would give u a 130% increase for each level gained. or double the initial level score target +30 % of current score target so if initial score target is 1000 the next target is 2000 + 30% of 2000 that is total of 2600 next level target score. for level 2.)
Separated condition from above one.
score = stage*pointstonextlevel set stage to stage+1