obj/ST
Shinitest
name = "Shinigami Test"
icon = 'Test.dmi'
verb
TakeExam()
set src in oview(1)
set category = "Commands"
set name = "Shinigami Test"
if(usr.dir!=SOUTH)
usr<<"Sorry you need to be turned to the test..."
return
if(!Shinitime||Shinitime==null)
usr<<"Sorry thereīs no Shinigami exam going at the moment..."
return
if(usr.rank=="Shinigami")
usr<<"Sorry you already have done the test and already passed..."
return
if(usr.Shinitest)
usr<<"Sorry you are already doing the test..."
return
if(usr.Shinimade)
usr<<"Sorry you just made the test you canīt do it until this one finishes and another start..."
return
usr.Frozen=1
usr.Shinitest=1
usr.score=1
if(usr.cantest&&usr.rank=="Student")
usr.cantest=0
switch(input("What Hollow Type is the weakest?","weakest",) in list("Menos Grand","Demi Hollow","Strong Hollow","Adjutas","Vastro Lord"))
if("Demi Hollow")
usr.score += 1
else
usr.score += 0
switch(input("What Race was Exterminated by the SS?","Extermited",) in list("Humans","Quincy","Inner Hollow","Bonto"))
if("Quincy")
usr.score += 1
else
usr.score += 0
switch(input("What is the second release of a zanbacto?","zanbacto",) in list("Shikai","Bankai","Doll","Final"))
if("Bankai")
usr.score += 1
else
usr.score += 0
switch(input("How Many Court Guard Squads are there?","Squads",) in list("5","9","16","13"))
if("13")
usr.score += 1
else
usr.score += 0
switch(input("To Become a captin u need to master wat 3 Skills?","Skills",) in list("Shikai,Flash,And Kido","Bankai,Kido,Doll","Shikai,Bankai,Flash"))
if("Shikai,Bankai,Flash")
usr.score += 1
else
usr.score += 0
switch(input("Sai is a Binding Spell","Binding",) in list("True","False"))
if("True")
usr.score += 1
else
usr.score += 0
switch(input("Espada is the Highest rank of Arrancar?","Espada",) in list("True","False"))
if("True")
usr.score += 1
else
usr.score += 0
switch(input("Cero is a Kido?","Cero",) in list("Yes","No"))
if("No")
usr.score += 1
else
usr.score += 0
switch(input("There Are 3 Differnt Release for a Zanbacto?","Releases",) in list("Yes","No"))
if("No")
usr.score += 1
else
usr.score += 0
switch(input("Who is the Only captin who does not know how to bankai?","Captin",) in list("Zaraki","Aizen","Yamamoto","Soi Fon","Ichimaru"))
if("Zaraki")
usr.score += 1
else
usr.score += 0
switch(input("Who is the youngest captin the the Ss?","Ss ",) in list("Aizen","Soi Fon","Tosherio","Yamamoto","Ichimaru"))
if("Tosherio")
usr.score += 1
if(usr.score >= 9)
usr<<"Congratulations you have passed the Shinigami Exam see the teacher!"
usr.testing=0
usr.Frozen=0
usr.tested=1
return
else
usr<<"You have failed the Shinigami exam!Better luck next time."
usr.testing=0
usr.cantest=1
usr.Frozen=0
usr.tested=0
return
else
usr.score += 0
if(usr.score >= 9)
usr<<"Congratulations you have passed the Shinigami exam see the teacher!"
usr.testing=0
usr.cantest=1
usr.Frozen=0
usr.tested=1
return
else
usr<<"You have failed the Shinigami exam!Better luck next time."
usr.testing=0
usr.cantest=1
usr.Frozen=0
usr.tested=0
else
usr<<"You must wait 15 minutes after takeing the test before you can take the Shinigami exam again."
return
Problem description:
Ok As u can See this is based off the Naruto way of the Shinobi genine test so if ur gonna make rude comments dont bother posting cause i dont care As for the Prob the test will not Show up i may be missing a alert or something im not sure if anyone can point out the Prob then plz do ty for the help in advance
if u need the Proc and variables for this I will post them only if asked for
I assume shinigamis never use the title "Student".
Also, check if usr.cantest really is enabled...