25.04.2014, 16:11
(
Последний раз редактировалось CutX; 25.04.2014 в 16:59.
)
Hey
recently, my console is being spammed by
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:
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
recently, my console is being spammed by
Код:
Warning: client exceeded 'messageholelimit' (1) 127.0.0.1:64928 (3303) Limit: 3000
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);
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