View Single Post
  #5  
Old 04-07-2007, 10:31 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
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 = {object3object4};
object2.var = object1.var;
//Objects are lost
---------
object1.var = {object3object4};
object2.var = new [object1.var.size()];
object2.var[0] = object1.var[0];
object2.var[1] = object1.var[1];
//Objects are saved 
__________________
Reply With Quote