Quote:
Originally Posted by ZeroTrack
*cough* Outdated function *cough*
|
It's not outdated,

one of my favorite scripts use the move();
PHP Code:
//#CLIENTSIDE
function onCreated() {
onTimeOut();
}
function onTimeOut() {
r = random(0,5);
rr = random(0,5);
rx = random(-3,3);
ry = random(-3,3);
playlooped("walk.wav");
setcharani("walk",NULL);
move(rx,ry,r,4+8+16);
sleep(r);
stopsound("walk.wav");
setcharani("idle",NULL);
setTimer(rr);
}
