ID:142646
 
Code: Running System
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
client/South()
client/East()
client/West()
if(prob(10)&&src.mob.moving) usr.running=1
..()


Problem description: Where Do I Need To Put My Normal Moving Icon And Running Icon? Thanks Already!

You should put your normal icon under mob/icon, and put your icon state under mob/icon_state.
In response to Armiris
Can you please show me where i need to put in in the code?
Here's one way to do it:
mob
player
icon = 'player.dmi'
icon_state = "standing"


Wherever you code moving=1, also code icon_state="moving". Wherever you code running=1, also icon_state="running". And whever you code moving=0, also icon_state="standing".