God damnit
You people need to read what I wrote in the freaking post. The script works fine already. Stop trying to correct stuff thats not broken.
Quote:
|
Originally Posted by Chompy
And, you can't send objects(/raw info) as params
|
You damn well can, object's locations don't change only references to them. The script already works like that, god.
Now here is the problem:
PHP Code:
---------
object1.var = {object3, object4};
object2.var = object1.var;
//Objects are lost
---------
object1.var = {object3, object4};
object2.var = new [object1.var.size()];
object2.var[0] = object1.var[0];
object2.var[1] = object1.var[1];
//Objects are saved