ID:176504
 
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 | :.
What's the problem?