I wanted to start my game with something rather simple. But whenever I try to use any text variable, I get an “invalid expression, couldn’t extract another token” error:
*create power 1
*create fame 0
*create followers 0
*create name “unnamed”
Results in:
startup line 10: Invalid expression, couldn’t extract another token: “unnamed”
If I use single quotes, I get the same error. When I use no quotes around “unnamed” I get a different error:
startup line 10: Invalid create instruction, value must be a a number, true/false, or a quoted string: name unnamed
Hopefully this is an easy issue to troubleshoot?