obj/Move()
..()
//----------------------------------
obj/CustomJutsu/Jutsu
Move()
if(src.moving) return
.=..()
if(.)
src.moving=1
..() // <--- necessary?
spawn(src.movespeed)src.moving=0
Problem description:
Im looking to regulate obj movespeed.
The above code is essentially identicle to the mobs' move speed procedure; yet it wont work.
I have a couple of other obj Move() procs that govern their unique trails, thus the Move() ..() bit.
Just wondering what could be preventing the obj from being slowed down...
Do not treat obj/Move() like mob/Move(), please >_>.
To make an obj move to being with, you must call any of the walk() procs. Know what they are? Because guess what: all of them work with movement speed, referred to as Lag by the reference. Please, look them up.