[HELP]No spawn as cop when wanted - 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]No spawn as cop when wanted (
/showthread.php?tid=559505)
[HELP]No spawn as cop when wanted -
Thoma - 23.01.2015
Ok so I looked at ****** and I found this:
Код:
if(gTeam[playerid] == Team_Cop)
{
if(GetPlayerWantedLevel(playerid) > 0)
{
return 0;
}
}
But i Dont use gteam in my GM i use GetPlayerTeam etc what would mine be?
Re: [HELP]No spawn as cop when wanted -
seanny - 23.01.2015
pawn Код:
if(GetPlayerTeam(playerid) == Team_Cop)
{
if(GetPlayerWantedLevel(playerid) > 0)
{
return 0;
}
}