ID:161726
 
Well, as the topic title says, i want a running system like GOA.

I heard you need to do something with atom move?

Who can help me with this problem?
mob/var/moving
mob/var/running
mob/Move()
if(moving) return
moving=1
..()
if(running) moving=0
else spawn(4) moving=0
spawn(4) moving=0
spawn(30) if(!moving) usr.running=0
client/North() //Copy this for client/South, east, west, etc too
if(prob(10)&&moving) usr.running=1
..()

I dunno if this will actually work
In response to Dragonn
Don't you need to put the icon from running in it?
In response to Mitzzz
Mitzzz wrote:
Don't you need to put the icon from running in it?

No, I think that's your job.
In response to Mitzzz
Thats up to you, I dont know what icons you use, this is just the difference in speed from walking to running.