30.01.2015, 12:32
"Kill list"? You mean you send Death messages OnPlayerDeath?
Easy, just use a switch, and if the playerteam is FBI or hitman, then don't send it.
Example:
Easy, just use a switch, and if the playerteam is FBI or hitman, then don't send it.
Example:
pawn Код:
switch(PlayerInfo[playerid][playerteam])
{
case FBI: return 1;
case Hitman: return 1;
default: // SendDeathMessage codes
}