09.08.2009, 14:59
You may aswell just use the score system built into SA-MP.
SetPlayerScore(playerid, score);
GetPlayerScore(playerid);
You can add to these yourself, with things like:
On top of this you'll need the help of a script like dudb to save the score when a player disconnects, and reload it upon their (safe) return.
SetPlayerScore(playerid, score);
GetPlayerScore(playerid);
You can add to these yourself, with things like:
pawn Код:
stock GivePlayerScore(playerid, score)
{
SetPlayerScore(playerid, GetPlayerScore(playerid) + score);
return GetPlayerScore(playerid); //added for the sake of it.
}

