My first day working with this engine, so forgive me I only know of what is in this forum and previous Lua experience.
I currently have a Description variable shown bellow.
-- DESCRIPTION: [withinText$ = "withinText"]
Now as a test I have the following distance check loop.
if playerdistance < 100 then
Prompt(withinText)
else
Prompt("Too Far")
end
The string works fine but the withinText variable crashes the program (also annoying save system doesn't account for this). All help appreciated.