Need help about save money
#4

I will give you how i have mine :

Код:
new Euro[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
  Euro[playerid]=0; // This is very important to prevent bugs !
}

public OnPlayerDisconnect(playerid, reason)
{
  dUserSetINT(PlayerName(playerid)).("Euro",GetPlayerEuro(playerid));
}

stock GivePlayerEuro(playerid, money)
{
	Euro[playerid] = Euro[playerid] + money;
	return Euro[playerid];
}

stock ResetPlayerEuro(playerid)
{
	Euro[playerid] = 0;
	return Euro[playerid];
}

stock GetPlayerEuro(playerid)
{
	return Euro[playerid];
}
Btw welcome Alice to samp forum
Reply


Messages In This Thread
Need help about save money - by Alice[WS] - 13.08.2009, 13:32
Re: Need help about save positions and money - by MenaceX^ - 13.08.2009, 13:37
Re: Need help about save money - by Alice[WS] - 13.08.2009, 13:51
Re: Need help about save money - by RaFsTar - 13.08.2009, 14:23

Forum Jump:


Users browsing this thread: 1 Guest(s)