1 error +rep - 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)
+--- Thread: 1 error +rep (
/showthread.php?tid=525266)
1 error +rep -
iBots - 11.07.2014
Well,i have made a system,with saving/loading,it's packs system,well and i made 100 slots for each pack,so i had to save them 1 by 1,i mean the slots,and loading them 1 by 1,so i made like this
pawn Код:
format(..........%d.....
and under it
Packs[i][PackSlot][0], //i made 100 like this
it should work but it shows this error:
pawn Код:
C:\Users\John\Desktop\Malek\Amagin\gamemodes\imagine.pwn(65296 -- 65403) : fatal error 102: table overflow: "staging buffer"
Compilation aborted.Pawn compiler 3.2.3664Â Â Â Â Â Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
these lines are from format till the last Packs[i][PackSlot][99]
please help
Re : 1 error +rep -
mirou123 - 11.07.2014
I had that same problem before. Try to do 50 arrays in one format and an other 50 in the second one.
Re: 1 error +rep -
iBots - 11.07.2014
You mean half of them in a format and other half in another format then put them both in 1 format?
Re: 1 error +rep -
S4t3K - 11.07.2014
PAWN compiler (default one for sure, idk about Zeex's) can handle a maximum of 125 arguments per function calling. (At least it's 125 if I remember correctly)
Re : Re: 1 error +rep -
mirou123 - 11.07.2014
Quote:
Originally Posted by iBots
You mean half of them in a format and other half in another format then put them both in 1 format?
|
Yeah something like that, but you don't even need to put them back together in one format.