Blockland Forums > Modification Help
Play animation
tapemaster21:
Is there a way I can make a key play the walk forward character animation (like the press forward and sit at the same time) only eaiser?
I know how to bind key (movemap.bindcmd(keyboard,"<key>","<insertcommanline>);","");)... if i could just get a command line for the console.
MrPickle:
%client.player.playthread(1, walk);
tapemaster21:
K, yea
that works... How can you make it auto find your null?
like .find(%client)
MrPickle:
--- Code: ---function serverCmdWalk(%client){
if(!%client.Walking){
%client.player.playthread(1, walk);
%client.walking = 1;
}else if(%client.walking){
%client.player.playthread(1, root);
%client.walking = 0;
}
}
--- End code ---
Untested. Type /walk to start and again to stop.
tapemaster21:
Have you tested plz lol