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)) & " = ?"