Running style - new to scripting. - 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 - new to scripting. (
/showthread.php?tid=446051)
Running style - new to scripting. -
CLT - 24.06.2013
Hello everyone, so I am kinda new to scripting and I wanted to ask how to change the running style of the player to the regular one (From the actual game), and another question is:
How do I add this text at the bottom of the screen while in-game, and wanted to ask how to place a clock, or colors there..
Thanks.
Re: Running style - new to scripting. -
dEcooR - 24.06.2013
For the running use
Код:
public OnGameModeInit() / OnFilterScriptInit()
{
UsePlayerPedAnims();
return 1;
}
and for the text on down you can use this editor
http://bsndesign.webs.com/tde.htm
Re: Running style - new to scripting. -
CLT - 24.06.2013
Quote:
Originally Posted by dEcooR
For the running use
Код:
public OnGameModeInit() / OnFilterScriptInit()
{
UsePlayerPedAnims();
return 1;
}
and for the text on down you can use this editor http://bsndesign.webs.com/tde.htm
|
Thanks, that helped me alot