30.07.2017, 19:31
Recently I was searching in samp wiki and I found this
https://sampwiki.blast.hk/wiki/Strpack
I was like lets open it and see what it is then I found "Packed strings" I never knew about this before the good about it is once you pack the string it will use 75% less memory according to samp wiki so imagine the big scripts that uses many strings with 128,326 bytes etc...
An example you can take from samp wiki
Later on I will update my thread with more information on how to pack your actual commands because now I need to experiment a bit with it :P sorry guys I know this isn't even a tutorial just thought I could share because not many people know about this.
https://sampwiki.blast.hk/wiki/Strpack
I was like lets open it and see what it is then I found "Packed strings" I never knew about this before the good about it is once you pack the string it will use 75% less memory according to samp wiki so imagine the big scripts that uses many strings with 128,326 bytes etc...
An example you can take from samp wiki
Код:
new string[32 char]; strpack(string, "Hi, how are you?");