Hello,
in my profile, I want to check several conditions before executing a command.
For example before speeding up a ship in Star Citizen, I have to make sure that
I'm actually in a ship and also not in chat mode.
I want put all these checks in one command/function/method I'm going to call
prior to the real command. In the subcommand I would set "BOOL:pre_check = True"
and look for the state of it later.
As I understand it, all variables in VA a global. Which could, in my case, spawn some weird
bugs as I would be changing "pre_check" all the time.
Is there a better way to do this? Like making variables local or unique to the calling routine.
Thanks,
Marcus