07.12.2009, 17:41
No Problem. 
You might want to make it so it checks if the killer was a zombie:
Another Example:

You might want to make it so it checks if the killer was a zombie:
Another Example:
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(gTeam[playerid] == TEAM_CIVILIANS && gTeam[killerid] == TEAM_ZOMBIES)
{
gTeam[playerid] = TEAM_ZOMBIES;
}
return 1;
}