Thread: ...array thing?
View Single Post
  #2  
Old 09-20-2006, 09:42 PM
KuJi KuJi is offline
Banned
Join Date: Apr 2004
Location: Staten Island, New York
Posts: 2,202
KuJi will become famous soon enough
Send a message via ICQ to KuJi Send a message via AIM to KuJi Send a message via MSN to KuJi Send a message via Yahoo to KuJi
Quote:
Originally Posted by _Z3phyr_ View Post
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};
Reply With Quote