Quote:
|
Originally Posted by Evil_Trunks
1. I can't do this for some reason
PHP Code:
colors = player.colors;
|
perhaps something like:
NPC Code:
for(i=0;i<player.colors.size();i++) {
colors[i] = player.colors[i];
}
or something might work
Quote:
|
Originally Posted by Evil_Trunks
3. addstring, I can't get this to work with gscript2
PHP Code:
addstring(this.list,"test");
message(this.list);
the message shows 0
|
the correct syntax is:
NPC Code:
this.list.add("test");
message(this.list);