Hey guys :)
I have two triggers, that set the variable "keeplooping" to either "1" or "0". After it sets them, it then executes this script:
if (keeplooping = 1) then
{
hint "keep looping is true";
}
else
{
hint "keep looping is false";
};
However, the hint's do not appear. I have verified that the triggers are setting the variable, and that the script recognizes the variable (by putting a "hint str keeplooping" in at the start of the script)
Any ideas what might be going on?