Creating a new project in CSIDE that has only the following code results in no errors for me on either quicktest or randomtest:
*title xmana test
*create xmana 20
*create xhp 20
*create xmaxhp 20
*create xdamage 0
Xmana is ${xmana}. Xhp is ${xhp}. Xmaxhp is ${xmaxhp}. Xdamage is ${xdamage}.
*set xmana (xmana - 22)
You used 22 mana! Your mana is now ${xmana}.
*if (xmana < 0)
*set xhp +xmana
*temp mdamage (0 - xmana)
*set xmana 0
Using too much mana causes you mana burn. Oof! Ouch! You take ${mdamage} HP worth of damage, reducing you to ${xhp} HP.
Xmana is ${xmana}. Xhp is ${xhp}. Xmaxhp is ${xmaxhp}. Xdamage is ${xdamage}.
*rand xdamage 0 (xmaxhp - xhp)
*set xhp (xhp - xdamage)
Suddenly, a goblin hits you! You take ${xdamage} HP worth of damage, reducing you to ${xhp} HP.
Xmana is ${xmana}. Xhp is ${xhp}. Xmaxhp is ${xmaxhp}. Xdamage is ${xdamage}.
*ending
Here is the output from a randomtest that shows fulltext:
*****Seed 0
Xmana is 20. Xhp is 20. Xmaxhp is 20. Xdamage is 0.
You used 22 mana! Your mana is now -2.
Using too much mana causes you mana burn. Oof! Ouch! You take 2 HP worth of damage, reducing you to 18 HP.
Xmana is 0. Xhp is 18. Xmaxhp is 20. Xdamage is 0.
startup *rand xdamage 2
Suddenly, a goblin hits you! You take 2 HP worth of damage, reducing you to 16 HP.
Xmana is 0. Xhp is 16. Xmaxhp is 20. Xdamage is 2.
Word count: 90
RANDOMTEST PASSED
Time: 0.017s
Now here is what I get when I try to run the same code when I comment out the *set xmana (xmana - 22)
code that reduces xmana below zero (and the message about using 22 mana)":
startup
executing
QUICKTEST FAILED
Error: startup line 22: Invalid rand statement, min must be less than max: 0 > -20
So (at least according to a quicktest on this very small subset of your code) the problem is that your min and max values in the quicktest *rand
are both zero. (As @liliarch notes, choicescript thinks (xmaxhp - xhp) is -20!)
Note that the code still runs, and when it does it doesn’t call that *if
statement (which, again, it shouldn’t in this case, because xmana is still 20, which is not below 0):
*****Seed 0
Xmana is 20. Xhp is 20. Xmaxhp is 20. Xdamage is 0.
Suddenly, a goblin hits you! You take 0 HP worth of damage, reducing you to 20 HP.
Xmana is 20. Xhp is 20. Xmaxhp is 20. Xdamage is 0.
Word count: 52
RANDOMTEST PASSED
Time: 0.014s
This suggests that there does not appear to be a problem with choicescript ignoring your *if
condition, either.