XPlor/definitions/cod/scriptstring.xscript

10 lines
220 B
Plaintext
Raw Normal View History

2026-01-01 22:18:40 -05:00
type scriptstring [display="Script String"]
{
i32 ptr [ui, readonly, display="Ptr"];
if (ptr == -1) {
// Read null-terminated string (C-style string)
value = cstring() [ui, readonly, display="Value"];
}
}