15.05.2012, 17:28
There are two ways, one is that you can set in your GameModeInit:-
And now the second way to do is you can use Animations for the player to make them walk/run your way:-
Example:-
Some of the walk animation names:
1) WALK_civi
2) WALK_drunk
3) WALK_fat
4) WALK_gang1
and so on so forth.
Animation List: https://sampwiki.blast.hk/wiki/Animations
ApplyAnimation: https://sampwiki.blast.hk/wiki/ApplyAnimation
-FalconX
pawn Код:
UsePlayerPedAnims(); // in GameModeInit
Example:-
pawn Код:
ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1,1);
1) WALK_civi
2) WALK_drunk
3) WALK_fat
4) WALK_gang1
and so on so forth.
Animation List: https://sampwiki.blast.hk/wiki/Animations
ApplyAnimation: https://sampwiki.blast.hk/wiki/ApplyAnimation
-FalconX