Server-Console Warning 'messageholelimit' - 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: Server-Console Warning 'messageholelimit' (
/showthread.php?tid=509110)
Server-Console Warning 'messageholelimit' -
CutX - 25.04.2014
Hey
recently, my console is being spammed by
Код:
Warning: client exceeded 'messageholelimit' (1) 127.0.0.1:64928 (3303) Limit: 3000
is this something to worry about?
I never had that warning until now.
The only things i added to to script is an 15k rows & 7 columns big 2D Array for coordinates.
and the only thing i do with it is create objects, same model, just different coordinates.
code:
pawn Код:
new Float:_out[15000][7] =
{// X Y Z rx ry rz ID
{3200.8889160156, -1932.1929931641, 0.91299998760223, 13.921752929688, 353.81771850586, 243.4928894043, 0},
//{....} and so on...
}
for(new i=0; i<15000; i++)
_out[i][6] = CreateDynamicObject(18843,_out[i][0],_out[i][1],_out[i][2],_out[i][3],_out[i][4],_out[i][5],5);
there isn't anything else i've added and when i remove it, there's no warning in the console..
so... is this something to worry about? or should i just ignore these warnings?
well, if it's something to worry about i can easily remove it from the gm again, it's not something important, just something optionally