Just can't come out. please help - 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: Just can't come out. please help (
/showthread.php?tid=172442)
Just can't come out. please help -
bartje01 - 30.08.2010
Hey guys. I'm stuck at my bank interest script with payday.
I'm now making things that I've never done before. Yes I used the search function.It didn't helped really.
this line:
pawn Код:
bank[i] += bank[i]/100*0.1;
is making me rich in one time. Like when I have 1000 on my bank, It will raise to 12992598 or something.
And it has to raise to 1001.
Please help
Re: Just can't come out. please help -
Voldemort - 30.08.2010
Dont powerup to 0.1, because 0.1 is float, but money is just usual decimal.
Use
bank[i] += floatround(float(bank[i])*0.1);