Developer postOriginal post (opens in a new tab)

IMPORTANT: changes to setting vars coming... PLUS global / private

UPDATE: CHANGE OF PLANS:
$ = local
# = global
~ = private

instead of just #
you will use $ (for local)
i.e.

$varname=100

NEW global vars:
use (#) to set a global var..
i.e.
#varname=

NEW private vars:
or (~) to set a private var...
i.e.
~varname=

This will be live in the next update!

All combinations have been confirmed working, to manipulate you would need to do:

$clockhours+timehours;
#timeleft-1;
~health*roomdamage;

Just be aware that it also currently doesn't prevent you from creating duplicate variable names across each scope so its a good idea to use unique vars until I can address this issue at a later date.