Strings are quite limited using the techniques we have for using them. It should be possible to use NBT to store and retrieve strings. However I am unaware of a technique to manipulate them (e.g. append string). Using Command IR this should be possible - https://github.com/simon816/Command-Block-Assembly/wiki/Command-IR-Instruction-Reference#nbt-instructions
In the assembly language / C compiler there isn't explicit support, but you can construct a /data command to store/retrieve strings
Activity
simon816 commentedon Jul 23, 2019
Strings are quite limited using the techniques we have for using them. It should be possible to use NBT to store and retrieve strings. However I am unaware of a technique to manipulate them (e.g. append string). Using Command IR this should be possible - https://github.com/simon816/Command-Block-Assembly/wiki/Command-IR-Instruction-Reference#nbt-instructions
In the assembly language / C compiler there isn't explicit support, but you can construct a
/datacommand to store/retrieve stringsartemking4 commentedon Jul 26, 2019
Thank you much for the info.