23.03.2017, 17:22
Quote:
|
Honestly, it's just a simple if-statement.
Код:
If player-who-died has killstreak greater than or equal to 5 then send message: player-who-died's killstreak was ended by player-who-killed. Код:
if(pInfo[playerid][Killstreak] >= 5)
{
printf("%d has ended the killstreak of %d", killerid, playerid);
}
|


