Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting
FAQ Members List Calendar Today's Posts

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 03-04-2007, 05:19 PM
JkWhoSaysNi JkWhoSaysNi is offline
Ruler of the graalaxy
Join Date: Feb 2005
Location: Great Britain
Posts: 488
JkWhoSaysNi is on a distinguished road
Send a message via ICQ to JkWhoSaysNi
Objects in player.attr?

Is there any reason why objects cant be stored in player.attr?

For example using my associative array class

PHP Code:
test = new TStaticVar();
test.join("assocarray");
test.make({"a","b","c"},{"one","two","three"}); 

  
player.attr[8] = test;
  
player.chat player.attr[8].item("a"); 
Doesn't work.

or

PHP Code:
player.attr[8]= new TStaticVar();
player.attr[8].join("assocarray");
player.attr[8].make({"a","b","c"},{"one","two","three"}); 
  
player.chat player.attr[8].item("a"); 
Also doesnt work.

Replacing player.attr[8] with a standard var name there works fine.

Is there any reason objects cant be stored in player.attr?


What i'm trying to do is work out how I can store objects between logins.

I want to make objects persistent. I can't store them in clientr.


The only way I think I can do it is storing the objects in a DB NPC with the player account. However, this seems kinda wasteful because the info on the player would be in memory in the DB NPC when the player is not even online.
__________________

Coming soon (Hopefully:P)
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 11:20 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.