Quote:
Originally Posted by Robin
Stop trying to increase your post count, it has no bearing on your life.
|
I have to agree..
Anyways, on topic..
Making your own movement system, or fighting system would solve your problem;o
Here's an easy script that shows you how you can change the sword ani
PHP Code:
//#CLIENTSIDE
function onCreated() {
setTimer(0.05);
}
function onTimeout() {
if (player.ani == "sword") {
setani("punch", 0);
// Change 'punch' into gani you want to display instead of sword
}
setTimer(0.05);
}
But to disable classic swords, probably
disableweapons();* or
disabledefmovement();
But using either of this makes it that you have to make a system to.. enable weapons or movement in your way being..
(* dunno about this one, can't remember it from the top out of my head)