Huge amx
#8

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]":
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();
}
And half that without the function call:
pawn Код:
new p;
main() {
    p++;
    p++;
    p++;
    p++;
    // more "p++;"
    // ...
    p++;
    p++;
    p++;
    p++;
}
Reply


Messages In This Thread
Huge amx - by GoldenLion - 15.09.2016, 18:08
Re: Huge amx - by Crayder - 15.09.2016, 18:19
Re: Huge amx - by GoldenLion - 15.09.2016, 18:24
Re: Huge amx - by Dayrion - 15.09.2016, 18:36
Re: Huge amx - by GoldenLion - 15.09.2016, 18:42
Re: Huge amx - by Crayder - 15.09.2016, 19:22
Re: Huge amx - by K0P - 15.09.2016, 20:23
Re: Huge amx - by Crayder - 16.09.2016, 03:10
Re: Huge amx - by PrO.GameR - 16.09.2016, 09:54
Re: Huge amx - by JaKe Elite - 16.09.2016, 10:39

Forum Jump:


Users browsing this thread: 1 Guest(s)