Help - Increase randomness with the score
Tiny_Studio
Member Posts: 50
How can I increase randomness when the score is high? Can you help me, please?
Comments
If your score is 300 it'll be random(1, 2)
If it's 600 it'll be random(1, 4)
etc.
Obviously replace game.Score with the correct Attribute. Change 150 in the random expression to find a suitable randomness.
EDIT: You will probably also want to floor or ceil the game.Score / 150 sum to remove decimal points.