obj
Interactive_Scenery
Shinigami_Gate_Guard
icon = 'Shinigami.dmi'
icon_state = "captain-blue"
density = 1
verb/Talk()
set src in oview(1)
switch(alert("Before i let you into soul society, you must defeat me.","Alrighty","I'm good","Cancel",))
if("Alrighty")
if(Shinigami)
set src in oview(1)
switch(alert("You are already a Shinigami, what are you doing out here?","I don't know",))
usr.loc = locate (60,65,2)
return
else
usr.Human = 0
set src in oview(1)
switch(alert("Do you think you have what it takes to become a Shinigami?","Yes","No","Cancel",))
if("Yes")
(alert("Lets see if you can defeat me.","Ok",))
usr.loc = locate (43,106,8)
if("No")
(alert("Get out of my sight"))
if("Cancel")
return
Whenever I try to include this code file, which seems pretty simple to me, I get around 48 errors saying that every else clause i have, doesn't have a statement after it. Please tell me what I'm doing wrong.