CJ 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: CJ running style (
/showthread.php?tid=583902)
CJ running style -
darkhunter332 - 31.07.2015
I tried to change CJ running,
I got many errors.
Please help me.
Код:
public OnGameModeInit()
{
//
print(" ");
print("Initializing gamemode...");
print(" ");
//
MapAndreas_Init(MAP_ANDREAS_MODE_FULL);
Re: CJ running style -
Midzi - 31.07.2015
Код:
UsePlayerPedAnims();
?
Re: CJ running style -
darkhunter332 - 31.07.2015
Where should i put it?
Can u explain yourself better?
Re: CJ running style -
zT KiNgKoNg - 31.07.2015
Quote:
Originally Posted by darkhunter332
Where should i put it?
Can u explain yourself better?
|
He's given you the means; How about you look on the WIKI?
Re : CJ running style -
anassmaroc - 31.07.2015
Код:
UsePlayerPedAnims();
Put it in public OnGameModeInit()
This public UsePlayerPedAnims For Normal Runing Like Freeroam Servers
And with Out UsePlayerPedAnims Player Run Slow Like Some Gang war Servers
Re: CJ running style -
darkhunter332 - 31.07.2015
Can you show me how it gonna look like?
Sorry but i'm bad at scripting.
AW: CJ running style -
Macronix - 31.07.2015
PHP код:
public OnGameModeInit()
{
UsePlayerPedAnims();
//other code...
return 1;
};
Re : Re: CJ running style -
anassmaroc - 31.07.2015
Quote:
Originally Posted by darkhunter332
Can you show me how it gonna look like?
Sorry but i'm bad at scripting.
|
Can u Just Tell US what u Need (Pic or Video) And We can Help u
Re: CJ running style -
Remy0 - 01.08.2015
Quote:
Originally Posted by darkhunter332
Can you show me how it gonna look like?
Sorry but i'm bad at scripting.
|
its Like The Gta SA OFFline Running Style
This Is The Code
UsePlayerPedAnims();
Add it Under
public OnGameModeInit()
Like That
Код:
public OnGameModeInit()
{
UsePlayerPedAnims();
return 1;
};