Author Topic: Console command help  (Read 336 times)

/warp admin orbs the player to where he is aiming (if admin obviously)
I am looking for a console command to rapidly warp every 200 or 100 milliseconds



function ctswarp() { commandToServer('warp'); }
function fastwarp(%on) { cancel($fw); ctswarp(); $fw = schedule(100, 0, fastwarp, true); }

client sided, should work.

after you input those, do fastwarp(1); to start and fastwarp(0); to stop.

so basically your warping 10 times a second wherever you're aiming?