19.06.2010, 18:34
Heres an example :
You get the idea
pawn Код:
new KillingSpree[playerid];
public OnPlayerDeath(playerid, killerid, reason)
{
KillingSpree[killerid] ++;
KillingSpree[playerid] = 0;
if(KillingSpree[killerid] == 3){
SendClientMessage(playerid, Color, "SERVER : You now have 3 killing sprees!");}
return 1;
}
