if you update to 6.50.2 you will see this code no longer runs... JCL posted a fix in beta:
(works for me now, added my_ to those key_cul and curs...
then added vars and the code below...)
quote:
fraid not - it's a hardwired feature of the C-Script compiler and I'm not allowed to touch this part of the code. I even do not know why you haven't seen those errors indicated before, as this error message is in place since A4.
But it should be easy to fix your script in 5 minutes:
1. search-and-replace all "key_" in your code by "my_key_".
2. Define a var "my_key_a", "my_key_b" etc. for all keys you are using.
3. Start the following piece of code from your main function:
while(1) {
my_key_a = key_a;
my_key_b = key_b;
...
wait(1);
}
Then you can still use all your key code and it's even legal.