if game.score >= 0 and if game.score < 200 spawn every 3
if game.score >= 200 and game.score < 600 spawn every 2
...
if game.score >= 600 and game.score < 800 spawn every 1
the rules you have say: if my score is less than or equal to zero AND over 200, spawn every 3 if my score is less than 200 AND more than 600 spawn every 2
Comments
if game.score >= 0
and
if game.score < 200
spawn every 3
if game.score >= 200
and
game.score < 600
spawn every 2
...
if game.score >= 600
and
game.score < 800
spawn every 1
the rules you have say:
if my score is less than or equal to zero AND over 200, spawn every 3
if my score is less than 200 AND more than 600 spawn every 2