trigger an event when score is divisible by x (HELP)

DoguzDoguz Member Posts: 500
edited June 2012 in Working with GS (Mac)
Is there a way that an event can be triggered every time the score ticks over a set amount of points. I don't want to set up a "if score equals 10 do this" scenario for each time so is there a function that will allow me to say divisible by 10?

So:

" when score is divisible by 10 to this"

Best Answer

  • JohnPapiomitisJohnPapiomitis Posts: 6,256
    Accepted Answer
    you can also do

    If score%10 = 0
    - do whatever

    Just another way to do it.

Answers

Sign In or Register to comment.