This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| new:empty_string [2018/02/20 14:27] – korshun | new:empty_string [2019/08/26 14:48] (current) – removed korshun | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Empty and invalid strings in ACS ====== | ||
| - | ACS strings are actually integers containing **string ids**. Any integer can be either valid (referring to a string that exists) or invalid (referring to no string). | ||
| - | |||
| - | Using an invalid string id will either do nothing, crash the script or crash the engine. Invalid string ids should never be used. | ||
| - | |||
| - | In contrast, empty ACS strings (''""'' | ||
| - | |||
| - | Unlike some other ACS libraries, [[string|ACSUtils string functions]] only accept valid string ids (including empty strings) and never return invalid string ids (but sometimes return empty strings). | ||