Quote:
Originally Posted by Trakan
The thing i want to do is:
-Setting clientr.idle/walk/ect... with the weapon (i.e. dagger)
-With a custom movement system, player speed
I founded this one, because i can't scripting for now.
After that it have "player.gani ....", and i want to replace player.gani = "idle" .... with the flag clientr.idle
|
if you are just out for changing the movement speed, than you should probably stick with the default movement as you can change the speed there aswell
PHP Code:
player.defaultwalkspeed = 0.5; //default speed, same for player.diagonalwalkspeed
player.diagonalwalkspeed = 0.5;
both work clientside. for the gani changing you can always use
PHP Code:
replaceAni("oldgani", "newgani"); //works clientside
and to fix the gani again to the default one
PHP Code:
replaceani("oldgani", "oldgani");