15.03.2009, 15:04
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerAdmin(i))
{
SendDeathMessage(killerid,playerid,reason);
}
}
}
return 1;
}
No CracK, I'm pretty sure the above code will check if anyone online is an admin and only send the message to them.

