Now it seems like I am having problems in the opposite direction. I can't set a global variable from Python script.
For example:
A global called startGame.
In script:
globalvar('startGame') = 1
global('startGame') = 1 <--- i know shouldn't work based on the fixes
globalvar("startGame") = 1
I seem to have tried every combination I can think of and I get an error "can't assign to function call" I've tried casting to string, to int.. all sorts of combinations. Just doesn't work.
Any ideas?