Merry
icon = 'NPC.dmi'
icon_state = "Merry"
name = "Merry"
density = 1
verb
Pick_Your_Destiny()
set src in oview(1)
if(usr.warrior = 1)
usr << "<b>YOU HAVE ALREADY CHOSEN!! BEGONE!!</b>"
else
switch(input("I can teach you how to use weapons or how to cast magic, but sadly your small mind cant comprehend both so you must choose one, and when you choose you cant change your mind unless you start over new!", "Do you wanna be a Warrior or Mage?", text) in list ("Warrior","Mage"))
if("Warrior")
usr.str = 3
usr.hp = 30
usr.mhp = 30
usr.def = 2
usr.warrior = 1
if("Mage")
usr.hp = 15
usr.mhp = 15
usr.mmp = 30
usr.mp = 30
usr.mage = 1
usr.magic = 3
Problem description:Basicly i get the following errors and I dont know how to fix them, nothing i do seems to work.. please help
Rythilia.dm:598:warning: empty 'else' clause
Rythilia.dm:596:error::missing expression
Rythilia.dm:599:error::invalid expression
Rythilia.dm:600::warning: empty switch statement