|
There are four variables to choose from. Variables must be put in brackets. '[ ... ]'
Step one, access the variable by typing 'X_' where X is the variable you want to access. Step two, what do you want to access? Its level? or the value of it? lvl = the level for each is exactly the number of the variable. E.G.       1_lvl = 1       2_lvl = 2       3_lvl = 3       4_lvl = 4 val = the value of the variable. Each variable has its own equation that I made up. E.G.       1_val = '+ [1_lvl];' equals 1       2_val = '+ [2_lvl] * [4_lvl];' equals 8       3_val = '+ ([3_lvl] / [2_lvl] );' equals 1.5       4_val = '+ [2_val] + [1_lvl];' equals 9 |