So I am trying to get a "Good Job" to pop up when every tenth enemy is killed. Maybe I am going about it wrong but I was trying to do System>Score (Global Variable)> Equal to > Value ( And I was thinking of an expression like round(Score/10) )
This obviously didn't work, I also tried a few others. Is there an expression to write this?
If score!=0
If score%10=0
Trigger once while true
Create text with fade behavior
Develop games in your browser. Powerful, performant & highly capable.
Sorry, I'm a little lost. Can you elaborate more? or perhaps send a screenshot of an example?
Nevermind, I think I got it working. I found another thread (IF SCORE/10 = WHOLE NUMBER...) that helped me out by elaborating on the expression you said.
!= means not equal
% is modulo, which is the remainder after division
Ah, I see now. Thank you for the information. Your way was certainly simpler.