2 Important things! - 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: 2 Important things! (
/showthread.php?tid=391092)
2 Important things! -
Hade. - 09.11.2012
Hey so the fist question is how do i remove the yellow coronas that originally are in samp?
And how to i make every skin run like CJ skin?
Thanks, if you want i can give REP+
Re: 2 Important things! -
doreto - 09.11.2012
1.DisableInteriorEnterExits();
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
or
pawn Код:
public OnFilterScriptInit()
{
DisableInteriorEnterExits();
return 1;
}
Re: 2 Important things! -
Hade. - 09.11.2012
Thanks
Re: 2 Important things! -
iggy1 - 09.11.2012
That will remove the yellow arrows, this will allow all skins to run as cj.
Game/Filterscript init
pawn Код:
UsePlayerPedAnims();//all skins run like cj
Put both in OnGameMode/FilterscriptInit.
Re: 2 Important things! -
[GF]Logic - 09.11.2012
Well for the interior thing i guess you need to paste this under your OnGameModeInit DisableInteriorEnterExits();
Don't put any thing inside this brackets
https://sampwiki.blast.hk/wiki/DisableInteriorEnterExits for the run thing i will try to remember it and tell you later
Re: 2 Important things! -
Hade. - 09.11.2012
Thanks all !