Probably a bit of a noob question, especially since I've been using AGS and C++ for over 4 years, but can you create arrays accessable from any script in AGS? I can't seem to create one in the Global Variables pane.
You have to create them manually, like this:
header:
import int array[10];
script:
int array[10];
export array;
Ah, OK. Awesome.
Thanks, Khris.
Also be sure to check out dynamic arrays in the manual. They're somewhat limited right now, but I know a thing or two more than what the manual has to say about them. ;)