25.04.2012, 03:37
Hey Guys.
===> i have Put This. But it show that the player who killed got killing spree not killer?? Please help me
===> i have Put This. But it show that the player who killed got killing spree not killer?? Please help me
pawn Код:
if(GetPlayerScore(killerid) == 5)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+2);
GivePlayerMoney(killerid, 1000);
new string[64], pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,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;
}