• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
[v13+] Type Quiz

Resource [v13+] Type Quiz 1.1

-FL-

Pokémon Island Creator
Member
Joined
Aug 28, 2022
Posts
274
-FL- submitted a new resource:

[v13+] Type Quiz - Type quiz minigame where the player must guess the multiplier of a certain type effectiveness.

gif.gif
screen.png
screen2.png
screen3.png

Type quiz minigame where the player must guess the multiplier of a certain type effectiveness in a certain...

Read more about this resource...
 

Jangajinx

An Overly Ambitious Developer
Member
Joined
Apr 21, 2023
Posts
213
Fun little concept. I like it! Anyway to reward players for the amount they have got correct?
 

cbcb

Rookie
Member
Joined
Apr 28, 2019
Posts
3
Code:
$game_variables[58] =
TypeQuiz.start_scene(5)
Example above. If player cancel the game, the value will be -1.
well thats a lot simpler than the way i handled it.

def main
loop do
Graphics.update
Input.update
self.update
if finished?
if @questions_right==5
then $game_variables[32] = 5
elsif @questions_right==4
then $game_variables[32] = 4
elsif @questions_right==3
then $game_variables[32] = 3
elsif @questions_right==2
then $game_variables[32] = 2
else
$game_variables[32] = 1
end
Bridge.message(
_INTL("Game end! {1} correct answers!",@questions_right)
)
return @questions_right
elsif @answer_label!=""
next_question
else
if Input.trigger?(Input::C)
on_choose
end
 

Eco

Novice
Member
Joined
Feb 22, 2024
Posts
10
Code:
$game_variables[58] =
TypeQuiz.start_scene(5)
Example above. If player cancel the game, the value will be -1.
Sounding very amateur here, but this this put somewhere in the script file or in the event editor and adding a control variable?
 
Back
Top