11.07.2011, 18:00
Hi,
I have made a killstreak system.
Heres only one example:
I also have made this:
It checks if the player had a killing spree when he died and if so it will show that message but theres a problem. The message doesn't show to anyone , not even the dead player.
Any help is appreciated thanks.
I have made a killstreak system.
Heres only one example:
pawn Код:
if(Killspree[killerid] == 3)
{
GetPlayerName(killerid,playername,sizeof(playername));
format(string,sizeof(string),"%s[%d] Is now on a killing spree of 3!", playername,playerid);
SendClientMessageToAll(COLOR_GREEN,string);
PlayerHasKillingSpree[killerid] = true;
}
pawn Код:
if(PlayerHasKillingSpree[playerid] == true)
{
SendClientMessage(playerid,COLOR_GREEN,"You died your killing spree ended.");
GameTextForPlayer(playerid,"~W~You died~N~~R~Killing spree ended",3000,6);
}
Any help is appreciated thanks.