Check if a number is dividable by itself and its multiplicates

Im making a game where you have a certain score and I want to check that if each time you reach a score thats 15 or 30 or 45 and so on, a miniboss should spawn.

The () mod () block should help with this
It reports the remainder of a number devided by another

If you're just checking if the score is a multiple of 15, then you just just check

<<((score) mod (15)) = [0]> and <(score) > [0]>>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.