19.06.2013, 15:20
Quote:
I need any filterscript .. to give score for making anything .. Like Kill someone = 1 score .. i need like that or different from it but it gives more scores like 10 score / one Job or Kill or anything
|
pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+10); //Sets the killer's score.
GivePlayerMoney(killerid, GetPlayerMoney(killerid)+1); //If you want to set his money as well.
return 1;
}