Description
Custom text with optional inserted values. In UI/code, the field is limited to 128 chars, ie. only 128 chars maximum can be put in a Custom String
value. However, during the playtime of a mode, the string limit is 511 bytes, ie. 511 bytes' worth of chars can fit into a string. So strings over 128 chars can be extended by splitting them to multiple strings and concatenating them together like so:
Before:
Custom String("<125 chars><125 chars>...")
After:
Custom String("<125 chars>{0}", Custom String("<125 chars>{0}", Custom String(...)))
Blocks of 125 chars are used in order to fit the '{0}'
Return
string
Arguments
Name: STRING
Description: The resulting text. Numbers in curly braces will be replaced with the corresponding values. (To bypass this replacement and actually display a number surrounded by curly braces, use double curly braces.)''
Type: StringLiteral
Default: ""Name: "{0}"
Description: The value that will be converted to text and used to replace {0}.
Type: Object
Default: NULLName: "{1}"
Description: The value that will be converted to text and used to replace {1}.
Type: Object
Default: NULLName: "{2}"
Description: The value that will be converted to text and used to replace {2}.
Type: Object
Default: NULL