18.05.2011, 03:15
In this block, just add in whatever killstreaks you want to send messages.
pawn Код:
if((tick - pTicks[killerid]) < 5000)//Gotta play with that number
{
pKillStreak[killerid]++;
pTicks[killerid] = tick;
if(pKillStreak[killerid] == 2)
{
//Send message
}
return 1;
}