Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hello,
I have a small problem. I want to generate an object every time my score is 10, 20, 30 etc.....So when score is a certain number I want to make an action.
Any idea how should I write this in event sheet?
Thanks
July
Develop games in your browser. Powerful, performant & highly capable.
If it's all multiples of ten, you could check for:
score%10 = 0
if it's arbitrary values, you could add them as keys to a dictionary and check for them with the "has key"-expression, or you use an array and check for "contains value"