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!"
--------------------------------------------------------------------------------
ID:180033
![]() Sep 12 2001, 3:09 am
|
|
Indent line 17 to be consistent with lines 5, 9, 13