player walking style - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: player walking style (
/showthread.php?tid=499993)
player walking style -
Dipto - 10.03.2014
hi all,
I am making a new gamemode, but i have a problem that,
when i spawn a player, it walk like a stupid. NOte : grandlarc player walk like the same as mine.
I want player to walk like ID 0 does ( CJ )
can any one tell me how to fix
Re: player walking style -
Stinged - 10.03.2014
UsePlayerPedAnims();
Under OnGameModeInit()
Re: player walking style -
Pottus - 10.03.2014
Yeah it's SetPlayerNoAssPickle(); in OnGameModeInit()
pawn Код:
SetPlayerNoAssPickle(bool:nopickle = true)
{
if(nopickle) UsePlayerPedAnims();
printf("Players will run with a pickle of their ass");
return 1;
}
Re: player walking style -
Dipto - 10.03.2014
thanks stinged,,, worked and rep added