SA-MP Forums Archive
Running 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: Running Style (/showthread.php?tid=328326)



Running Style - Dripac - 24.03.2012

There is a function for OnGameModeInit to disable the custom running styles, its something like UsePeds, i dont remember the name, i tried to search on ****** but couldn't find the function
So when i add this, all skins have CJ running styles


Re: Running Style - fiki574 - 24.03.2012

UsePlayerPedAnims();


Re: Running Style - MP2 - 24.03.2012

https://sampwiki.blast.hk/wiki/Category:Scripting_Functions


Re: Running Style - .FuneraL. - 24.03.2012

If you want to walk like the CJ, use UsePlayerPedAnims (); In OnGameModeInit
If you want to walk with the other floor, remove this function.



Re: Running Style - sniperwars - 26.03.2012

pawn Код:
public OnGameModeInit()
{
     UsePlayerPedAnims();
     return 1;
}



Re: Running Style - Twisted_Insane - 26.03.2012

You could also create a command for switching the styles, but the main part is:
pawn Код:
UsePlayerPedAnims();