var/SpellLevel=1
var/Formula="16*SpellLevel-5"
proc
FormulaAnswer()
return //And it's supposed to return the answer to the given formula which is stored as a string, which includes variables in it. It can't be set without being a text string or else it evalulates immediately based on the current SpellLevel and you'd have to use Formula=16*SpellLevel-5 which defeats the whole purpose.
Problem description:So how would I do this? I want the formula to be stored as a string so it doesn't evaluate immediately, then I will evaluate the formula when I need the answer to it, but how?