trainer2
name = "Trainer 2"
icon = 'mobs.dmi'
icon_state = "t2"
verb
Talk(set src in oview(1))
alert("To learn how to become what you want, click 'Help' in the bottom-right.")
alert("HAVE FUN!")
var/q_train = input("Would you like to do the tutorial?","Tutorial?")in list("Yes","No")
switch(q_train)
if("Yes")
usr.loc=locate(72,2,1)
alert("These are Demi-Hollows, they will not attack back.","Demi")
else if("No")
alert("Teleport to main.")
Problem description:
I get these errors when I compile:
mobs.dm:17:error: src: missing comma ',' or right-paren ')'
mobs.dm:17:error: ): expected }
mobs.dm:17:error: location of top-most unmatched {
Please help, thanks! =)
You forgot another parenthesis ;p