Quote:
|
Originally Posted by contiga
Maybe in this case you must do: player.attr[ 7] = "gani",3;
Because in findImg( index).ani = lala; you must also do it that way.
|
That _SHOULD_ produce a syntax error. But it probably won't because it will use oldstrings and such. If you're going to do something like that, the correct syntax is either:
player.attr[7] = { "gani", 3 };
or
player.attr[7] = "\"gani\",3";