Im having trouble getting access to public variable in a script.
The variable is declared in a different script.
In script A:
WestFlag = WestFlag + [_flag]
PublicVariable "WestFlag"
In script B:
?!(Flag1 in WestFlag) : JumpOnLeftLegScreemingImALuckyPotatoe
^^^^^^^^^^^^
This part look like its not working. It looks like the array "WestFlag" is empty.
"WestFlag" should be an array of objects, since "_flag" should be a flag. "Flag1" should also be a flag.
Maybe I shouldnt use public variables at all?