27.04.2012, 10:36
Guys i add this but spree is not working.. Please help me
pawn Код:
if(GetPlayerScore(killerid) == 5)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+2);
GivePlayerMoney(killerid, 1000);
new string[64], pName[MAX_PLAYER_NAME];
GetPlayerName(killerid,pName,MAX_PLAYER_NAME);
format(string,sizeof string,"Server News: %s is Now On Killing Spree Of 5 ",pName);
SendClientMessageToAll(0xFF8000FF,string);
SendClientMessage(killerid,COLOR_GREEN,"Congratulation! You Got +2 Scores and 1000$ Money For Killing 5 in Row!");
return 1;
}