You're on some next level stuff if you quote and reply to a comment made in 2002.
Here's a low quality remote control block:
PHP Code:
//#CLIENTSIDE
function onCreated() {
this.cx = player.x;
this.cy = player.y;
setTimer(0.05);
}
function onTimeout() {
freezeplayer(0.05);
showimg(20, "block.png", this.tx, this.ty);
for (temp.i = 0; temp.i < 4; temp.i++) {
if (keydown(temp.i)) {
this.tx = vecx(temp.i);
this.ty = vecy(temp.i);
}
}
setTimer(0.05);
}