02.10.2012, 16:38
how can i make normal score not score with the amount money u have can u look i use lvdm



(
SetPlayerScore(playerid, GetPlayerMoney(playerid));
public MoneyGrubScoreUpdate()
{
new CashScore;
new name[MAX_PLAYER_NAME];
//new string[256];
for(new i=0; i<MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
GetPlayerName(i, name, sizeof(name));
CashScore = GetPlayerMoney(i);
SetPlayerScore(i, CashScore);
if (CashScore > CashScoreOld)
{
CashScoreOld = CashScore;
//format(string, sizeof(string), "$$$ %s is now in the lead", name);
//SendClientMessageToAll(COLOR_YELLOW, string);
}
}
}