1: flags2 + UNTOUCHABLE
2: Try using WWRAP to wrap text lines (txt_load loads line by line)
3: \n is an escape code. It is just a "new line" as long long as you are in c-code
The compiler translates \n to 0x0A in the string AT compile time).
If you load \n from a text file, you load the actual \n string which is 0x2F 0x6E
So you need to parse your loaded string for "\\n" and replace every single one with " \n" (space at line end does not do anything at all, but has the same size so you can run the code in-place)


Visit my site: www.masterq32.de