Recently I was searching in samp wiki and I found this
http://wiki.sa-mp.com/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
Code:
new string[32 char];
strpack(string, "Hi, how are you?");

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 sorry guys I know this isn't even a tutorial just thought I could share because not many people know about this.