Thread: Showing flags
View Single Post
  #11  
Old 12-30-2012, 02:53 AM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
Quote:
Originally Posted by Trakan View Post
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"); 
__________________
MEEP!
Reply With Quote