Activate event with multiples of 10?

Hi, this is my first post in this forum, but I hope my question is resolved. ¿How do I need to make to create a object, every time than the score reached is a multiple of 10?
Game Editor discussion board
http://game-editor.com/forum/
if(score % 10 == 0) // Goes into 10 with no remainder
{
// Code to do on multiples here
}
DarkParadox wrote:You can use the modulus operator, "%", with an if statement.
"%" is like division with "/", but returns the remainder of the division. E.g. "3 % 10" would return "1" since "3" goes into "10" three times with one left over. You can check for multiples by using this and seeing if there's any remainder, and if there isn't, it was cleanly divisible.
- Code: Select all
if(score % 10 == 0) // Goes into 10 with no remainder
{
// Code to do on multiples here
}
if(condition);
{
// stuff
}
if(condition)
{
// stuff
}
if(score % 10 == 0)
{
// Code to do if score is a multiple of ten
}
if ((int)score.textNumber % 10 == 0)
{
//here comes the create actor code
}