19.12.2013, 15:41
how am i abel to make that every kil you make you get +5 score? Please would be nice if i found it
public OnPlayerDeath(playerid, killerid, reason)//this is the call back , which detect the death of each player
{
SetPlayerScore(killerid,GetPlayerScore(killerid)+5);//here we are going to check the current killer score , and increase them plus 5
return 1;
}