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
Our educational partners
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
Hi guys, I'm trying to make a bunch of random equations for this app I'm making. Currently I cannot figure out how to make it so the equation shows: Random Number 1-5 Plus Random Number 1-5 Equals Question Mark. I'm trying to make the answers in multiple choice format where there are three numbers two incorrect and one that's right. Can someone show me in event sheet form how that would look? Thanks so much.
Develop games in your browser. Powerful, performant & highly capable.
Try setting a Text object's text to something like:
int(random(1, 6)) & " + " & int(random(1, 6)) & " = ?"