Quote:
Originally posted by protagonist
Setarray makes string arrays. It's ideal for text or a mixture of text and numbers.
|
setarray makes variable arrays, not string.
Oh and setarray:
NPC Code:
setarray this.test,5;
would then create the variable:
NPC Code:
this.test={0,0,0,0,0};
And then you could manually access each value by:
NPC Code:
this.test[2]=8;
would make the third value eight.