06.03.2011, 13:22
This is how i would do it:
Top...
under OnPlayerDeath(playerid, killerid, reason)...
Top...
Код:
new KillingSpree[MAX_PLAYERS]
Код:
KillingSpree[killerid] ++;
KillingSpree[playerid] = 0;
if(KillingSpree[killerid] == 5)
{
//do this
}
else if(KillingSpree[killerid] ==10
{
//Do that
}
//And so on..

