ID:180033
 
I have been at this for hours please help

mob
Login()
var/race = input("What do you want to be?") in list ("Dragon","Human","Gremlin","Ghost")
switch(race)
if("Dragon")
icon='dragon.dmi'
str = 15
verbs += /mob/proc/Snort
if("Human")
icon='player.dmi'
hp = 70
verbs += /mob/proc/jump
if("Gremlin")
icon='Merman.dmi'
dex = 30
verbs += /mob/proc/hiss
if("Ghost")
icon='ghost.dmi'
str = 10
verbs += /mob/proc/boo

..()
var
str = 10
hp = 50
dex = 20
proc
hiss()
usr << "You Hiss Like a Snake!"

proc
Snort()
usr << "You Snort really load!"

proc
jump()
usr << "You Jump and fall back down!"

proc
boo()
usr << "You Give out a Frightfull BOO!"



--------------------------------------------------------------------------------
I'm not trying to be funny here, but have you looked at line 17 and the indentation? By your topic name, you seem to have already solved your problem.

Indent line 17 to be consistent with lines 5, 9, 13
i fix and i still get the error
In response to RagnarofBurland
Remove all the whitespace from the start of the line so that the text is flush with the left margin, then carefully tab it out to the right location. You've probably accidently put a space in with the tabs, which means it looks right when you look at it, but the compiler doesn't agree.
In response to Shadowdarke