How do I make a multiple choice quiz game by using Quiz Example and more than one correct Answer?

Not favoritedFavorited Favorited 0 favourites
  • 2 posts
From the Asset Store
With this template you will learn how to use the GooglePlay Games native plugin
  • I am using Quiz Example form the Example browser, I want to make a question more the one correct answer, when playher select the any answer, the radio button change blue color, or click again cancel. After select answers, click a submit button to confirm selection, then check answer, correct selection radio change to green, incorrect selection change to grey, and show all the correct answer.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • alr this'll take a bit-

    prepare:

    note you may want to change the CSS style on button when selected

    -------------

    first you'll have 2 buttons (note this still allows for as many options)-one the question button(QB)-the other the submit button(SB)

    make a variable (Var) for QB and assign 1 to the correct answers and 0 to the wrong answers.

    also add a boolean (BL) to QB and all should have a default of False.

    also lets say radio is a sprite (RD).

    Also make a sprite (SR) that will show visibility (say it looks like an arrow) when answer has been submitted (when placing SR make it above the correct answers)

    ------------

    events sheet

    ------------

    1)2 conditions

    on click QB → set QB.BL to True

    While Qb.BL == False

    2)2 conditions

    on click QB → set QB.BL to False

    While Qb.BL == True

    3)3 conditions

    on click SB → set RD.color to Red

    While Qb.BL == True → set SR visibility to visible

    While QB.Var == 1

    4)3 conditions

    on click SB → Set RD.color to Grey

    While Qb.BL == True → set SR visibility to visible

    While QB.Var == 0

    -------------

    hope this what u want

    also i hope you understand this

    ill make a pic-

    m8n not be r8

    Radkampfwagen

Jump to:
Active Users
There are 0 visitors browsing this topic (0 users and 0 guests)