Author Topic: Walk in place  (Read 394 times)

I need a command that allows you to walk in place, preferably /wip

Need it for a film ;)

Sit and press W at the same time, your animation will get stuck.

This should do it. Copy the code and enter eval(getClipboard()); into your console, then use /wip.
Code: [Select]
function serverCmdWIP(%client)
{
if(isObject(%obj = %client.player))
{
%obj.playThread(3, "run");
}
}