Posted: 10th Feb 2021 19:15
I want to show a sprite only when my score is equal to a multiple of 15.
Posted: 10th Feb 2021 20:36
Try this?

+ Code Snippet
my_score=105
if Mod( my_score, 15)=0
	SetSpriteVisible(MY_SPRITE_ID, 0)
endif