ID:141176
 
Code:
job1
verb
jobadvance()
set src in view(1)
if (!usr.level == 10)
alert("You must be level 10 exactly to job advance!")
switch(input("What would you like to be?", "Lazer - long ranged fighter", "Headshot - close range kid", "Worrior - cowardly close up homo")
if ("Lazer - long ranged fighter")
alert("You are now a lazer")
verbs += typesof(mob/Lazer)
usr.level += 1
if ("Headshot - clse range kid")
alert("You are now a headshot")
verbs += typesof(mob/Headshot)
usr.level += 1
if ("Worrior - cowardly close up homo")
alert("You are now a worrior")
verbs += typesof(mob/Worrior)
usr.level += 1


Problem description:

For some reason i get: shops.dm:69:error: if: missing comma ',' or right-paren ')' (line is: if ("Lazer - long ranged fighter")
                    switch(input("What would you like to be?", "Lazer - long ranged fighter", "Headshot - close range kid", "Worrior - cowardly close up homo"))




You forgot to put a parenthesis at the end of the sixth line. It should look like that ^^^

(You also have a few typos in there, unless it was on purpose or something :S)
In response to PixiDust
1. ahh, thank you.
2. yes, those are purposeful typos.