Math Quiz : Simple Equation

5
  • 11 favourites

Index

Attached Files

The following files have been attached to this tutorial:

.capx

simple-math-equations-game.capx

Download now 174.98 KB

Stats

6,670 visits, 15,091 views

Tools

Translations

This tutorial hasn't been translated.

License

This tutorial is licensed under CC BY 4.0. Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.

CREATING THE QUESTION

5.) Add new event sheet and name it "Create". We'll use it to place our "Create()" function event.

6.) Add global variable "OPERATION" (text). Then, randomize it to give variety to the game. To do it, use "choose()" expression.

7.) Add sub event, and compare OPERATION variable's value.

Add two more variable NUMBER1 and NUMBER2 and randomize their value.

8.) Do the calculation based on OPERATION. Then, add one more number variable and name it "RESULT" to store the result.

8.) For divide question, make sure that NUMBER1 can be divided by NUMBER2 . randomize NUMBER2's value first, then set NUMBER1's value to NUMBER2*floor(floor(random(minimum_value,maximum_value)))

9.) Create text object "txt_Question" to display the question. Set the value to NUMBER1&" "&OPERATION&" "&NUMBER2&" = ?".

10.) Create another text object "txt_Choice" to display the answers. Copy and paste it, so you have three txt_Choices

11.) Randomize the answers with for each. But, pick one random txt_Choice to display the correct answer.

  • 1 Comments

  • Order by
Want to leave a comment? Login or Register an account!