Quote:
Originally Posted by _Z3phyr_
So anyway... I don't want to flood the 'Script Flags' tab with a bunch of different variables that aren't too important. I decide to make an array for a list that will keep count of an item when the weirdest discovery is made:
client.array[1]++;
^ ^incorrect???
but
client.variable++;
^ ^correct
my question:
"wtf?", and/or "how can I get around this without flooding the Script Flags tab? I was thinking of using tokens but then again that's an array too aint it?"
tokens[1] += anything;
^ ^incorrect
|
Does client.array exist already? If not, try setarray or client.array = {0, 0};