Hey all, sorry to bother you...again,
I'm making a Text MUD, and my movement code doesn't work.
Heres my code for a North() verb:
mob/verb
North()
set hidden = 1
var/area/A = usr.loc
if(usr.state != "standing") {usr << "You should try standing first!"}
else
if(A.north)
usr.Move(locate(A.north))
Msg23("You walk north","[usr] walks north.")
mb_msgout(usr.loc:Description())
else {usr << "You can't go there."}
if you could help....please do so
.: | HILEL | :.
ID:176504
Jan 7 2003, 5:55 pm
|
|
Jan 7 2003, 6:06 pm
|
|
What's the problem?
|