02.10.2012, 12:05
Money won't be displayed as score.
Btw, if you want kills to be displayed, you can create a kills variable and a textdraw to display it.
Example of kills
For saving, you can use y_ini, d_ini, or SII.
Btw, if you want kills to be displayed, you can create a kills variable and a textdraw to display it.
Example of kills
pawn Код:
new pKills[MAX_PLAYERS]; //Creating kills variable.
public OnPlayerDeath(playerid, killerid, reason) //When player dies.
{
pKills[killerid]++; //Raises the number of kills +1 for the killer.
return 1;
}