16.09.2016, 03:10
Just to point things out... I can easily make a 2 line script that would be well over 6.19mb...
For example, the following would be around 10000kb (~10mb, and easily expandable to a lot more) because of the "arr[10000][1024]":
And another example, I can easily make a 200k line script that is less than 1mb:
And half that without the function call:
For example, the following would be around 10000kb (~10mb, and easily expandable to a lot more) because of the "arr[10000][1024]":
pawn Код:
new arr[10000][1024];
main() arr[0][0] = EOS;
And another example, I can easily make a 200k line script that is less than 1mb:
pawn Код:
new p;
addUpp() p++;
main() {
addUpp();
addUpp();
addUpp();
addUpp();
//... And more of "addUpp();" to make up 200k lines...
//...
addUpp();
addUpp();
}
pawn Код:
new p;
main() {
p++;
p++;
p++;
p++;
// more "p++;"
// ...
p++;
p++;
p++;
p++;
}