02.03.2015, 05:05
Quote:
Something like this?
Код:
if(gTeam[playerid] == 1 || gTeam[killerid] == 0) |
pawn Код:
|| // that mean or
Try this
If(gTeam[killerid] != TEAM_POLICE) // the ! Sign means not, so it checks if the killer team is not team police . That's what its saying.
{
If(gTeam[playerid] == TEAM_POLICE) // this checks if the player that died is on team police
{
//your code here
}
}