QUOTE
x: Section 'STR ' - strings section
beta57 * 1.00 * 1.04 * Brood REQUIRED
1 int - Number of strings in the section(this will be 1024, regardless of how many strings are actually used, and cannot exceed 1024)
1024 ints - 1 int for each string specifying the offset from the beginning of this section of where the string starts. If there are less that 1024 strings, the unused entries will point to string #0 (the null string). Important Note: String #0 should have an offset of 2050, etc. (1025 ints for this table)
Here is where all the strings go, one right after another; and all of them null terminated. Note: string #0 (the very first one) is ALWAYS the null string. All other strings start at #1
Noteworthy Note: Strings are not limited to a single color. The color can be changed to your liking. See Colored Text, for more info on this
Only ints can tell the offset of the location of the string in the file. The max size of an int is 65535.
Therefore the max offset would be less than 65535 in order to fit in the last string.