29.10.2017, 20:43
Hey there!
Recently i added a label system to my script (xsf script not mine), so after i did get some weird thing
That's when i define MAX_LABELS to 2000 i get 128 MB (.amx file)
2000 = 128 MB
800 = 53 MB
200 = 16 MB
1 = 3 MB
which is not normal at all
Here's where i used it ^
Any help would be appreciated.
Recently i added a label system to my script (xsf script not mine), so after i did get some weird thing
That's when i define MAX_LABELS to 2000 i get 128 MB (.amx file)
PHP код:
#define MAX_LABELS 2000
800 = 53 MB
200 = 16 MB
1 = 3 MB
which is not normal at all
PHP код:
enum ENUM_LABEL_SYSTEM
{
Input[250],
Float:TX,
Float:TY,
Float:TZ,
VW,
Text3D:Label = 0xFFFF,
Owner
};
new TextInfo[MAX_LABELS][ENUM_LABEL_SYSTEM];
Any help would be appreciated.