Money Saving wrong - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Money Saving wrong (
/showthread.php?tid=192552)
Money Saving wrong -
Steven82 - 22.11.2010
Alright for some reason my money when ever someone log's back in after they disconnect and stuff my money is loading it and giving them it as a negative. Anyone know the problem?
Here is the money saving line it's under a public
pawn Код:
dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]-GetPlayerMoney(playerid));
And btw the money saves as the player disconnects if that helps.
Re: Money Saving wrong -
Cameltoe - 22.11.2010
Could you explain why you did:
pawn Код:
dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]-GetPlayerMoney(playerid));
And not:
pawn Код:
dini_IntSet(file,"Money",GetPlayerMoney(playerid));
Or:
pawn Код:
PlayerInfo[playerid][pMoney] = GetPlayerMoney(playerid);
dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]);
Re: Money Saving wrong -
The_Gangstas - 22.11.2010
pawn Код:
dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]);
and make sure u have the onplayerupdate or timer
pawn Код:
if(IsPlayerConnected(playerid))
{
if( GetPlayerMoney(playerid) != PlayerInfo[playerid][pMoney])
{
ResetPlayerMoney(playerid);
GivePlayerMoney(playerid, PlayerInfo[playerid][pMoney]);
}
}
Re: Money Saving wrong -
Steven82 - 22.11.2010
Quote:
Originally Posted by Cameltoe
Could you explain why you did:
pawn Код:
dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]-GetPlayerMoney(playerid));
And not:
pawn Код:
dini_IntSet(file,"Money",GetPlayerMoney(playerid));
Or:
pawn Код:
PlayerInfo[playerid][pMoney] = GetPlayerMoney(playerid); dini_IntSet(file,"Money",PlayerInfo[playerid][pMoney]);
|
To be honest, im retarded.
Re: Money Saving wrong -
Cameltoe - 22.11.2010
Quote:
Originally Posted by Steven82
To be honest, im retarded.
|
Haha, good answer !! Jk, did you get it working properly?
Re: Money Saving wrong -
Steven82 - 22.11.2010
Yes sir

Thank you
Re: Money Saving wrong -
Buzzbomb - 26.11.2010
Quote:
Originally Posted by Steven82
To be honest, im retarded.
|
o_O I have No clue what to say.. heh