SA-MP Forums Archive
[HELP]Running - 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: [HELP]Running (/showthread.php?tid=357662)



[HELP]Running - Ivan_Balkan - 07.07.2012

Hi to all.I have one problem My character is running too slow.How can I speed up him ?


Re: [HELP]Running - Kirollos - 08.07.2012

put
pawn Код:
UsePlayerPedAnims();
inside
pawn Код:
public OnGameModeInit()
{
//here
}
ex:

pawn Код:
public OnGameModeInit()
{
    UsePlayerPedAnims();
    //your other stuffs
    return 1;
}



Re: [HELP]Running - Ivan_Balkan - 09.07.2012

Quote:
Originally Posted by kirollos
Посмотреть сообщение
put
pawn Код:
UsePlayerPedAnims();
inside
pawn Код:
public OnGameModeInit()
{
//here
}
ex:

pawn Код:
public OnGameModeInit()
{
    UsePlayerPedAnims();
    //your other stuffs
    return 1;
}
When I put this code,and trying to compile,pawno stop working....