obj
Chuunin_Test
icon = 'Test.dmi'
verb
Take_Test()
set src in oview(1)
if(Chuunintestactive&&!usr.testing&&usr.rank == "Genin")
usr.testing = 1
switch(input("How many basic elements are there?")in list("1","5","2","3"))
if("5")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
switch(input("What rank is Yamata No Jutsu?")in list("A","D","C","S"))
if("S")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
switch(input("Samedare Kekka uses what two weapons?")in list("Two windmills","Kunai and an Explosive tag","Smoke bombs and Mashibishi spikes","Senbon and an Umbrella"))
if("Senbon and an Umbrella")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
switch(input("Sunagakure is in the country of _____...")in list("Sand","Wind","Earth","Bear"))
if("Wind")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
switch(input("What is the kage of Iwagakure called")in list("Old","Tsukikage","Ketsuejikage","Tsuchikage"))
if("Tsuchikage")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
switch(input("Which of these is a Taijutsu?")in list("Shunshin No Jutsu","Tajuu Kage Bunshin No Jutsu","Omote Renge","Souma No Kou"))
if("Omote Renge")
usr.points += 1
usr << "Correct!"
else
usr << "Wrong!"
if(usr.points >= 6)
usr << "You passed the Chuunin exam with [usr.points]/6 points!"
else
usr << "You failed the Chuunin exam with [usr.points]/6 points!"
Alright that's my code for the chuunin ecam, I'm wodnering where would I put the usr.loc = locate(x,y,z) to make them go to the forest of death part? I have an idea but I'm not sure. My idea was to put it right under you passed the Chuunin exam with blah blah points. Do you guys think that will work?
you want to put it under the part in which they've passed... ex like this
If you notice you would put it under the part as the Person has passed so if they pass it will locate them at FOD.
"Else" They fail and nothing happens