10.06.2012, 20:49
Quote:
1 word for that: Impossible.
Max string size in sa-mp is 1024... |
EDIT: Why would you want to store a very long string?
EDIT2: Anyways, the best way for memory consumption for any variable in PAWN is to make it a local variable and not global, because it will be deleted when it goes out of scope, if it is local. And global variables stay in memory until the program closes.
Just make the array as large as you need it to be, and if you get no errors or warnings when you compile/run you should be OK (as long as its not too big). Just avoid using global variables whenever possible especially large arrays.