ID:143181
 
Code:A verb to give someone a verb

    GiveSpell(mob/M in world)
set name = "Give Spell"
set category = "Staff"
switch(input("What Jutsu do you wish to give them?")) in list("Plant","Incendio","Episky","Cancel")
if("Incendio")
M.verbs += new /mob/verb/Incendio()
if("Plant")
M.verbs += new /mob/verb/Plant()
if("Episky")
M.verbs += new /mob/verb/Episky()
if("Cancel")
return


Problem description:Owner.dm:70:error: missing left-hand argument to in.

You have a dbl parenthesis next to in list. One of them should be moved to the end of the line.
Make the switch parenthesis end after the list, not before it.
In response to Pyro_dragons
Hmm wats a Perenthesis???

also this is my try but i cant get it to work tahts why i wanted someone to show me Developer
How-To so i could iplie it to mine
In response to Chrislee123
Parenthesis = "(" and ")".

How old are you?
In response to Kaiochao2536
I call them brakets
In response to Chrislee123
Oh so i move one of the Brakets to the end of the line
In response to Chrislee123
Ty it worked u guys are great
In response to Chrislee123
{} Braces
() Parenthesis
[] Brackets