Attributes Activating in Multiples of ten
eligames
Member, PRO Posts: 40
Hello I was wondering if there was any way you can make an attribute happen every 10 times. I have a score and when it hits multiples of 10 then I want to display the score in big numbers.
Comments
You can try doing this
if mod(game.Score,10) = 0 and Game.Score > 0
display the score in big numbers
Awesome Thank you