View Single Post
  #13  
Old 05-14-2008, 09:33 AM
Dan Dan is offline
Daniel
Join Date: Oct 2007
Posts: 383
Dan is an unknown quantity at this point
Send a message via MSN to Dan
Quote:
Originally Posted by zokemon View Post
That's not true Ziro. Here's a perfect case:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
this.myobj = new TStaticVar();
  
this.myobj.join("myclass");

You wouldn't be able to do that serverside as your object doesn't exist over there .
I did this serverside and it works fine?

PHP Code:
case "accessClass": {
  
temp.access = new TStaticVar();
  
temp.access.join(params[1]);
  
temp.access.(@ params[2])(@ params[3]);
  
temp.access.destroy();
  return 
true;

Or isn't that what you ment?
__________________
Reply With Quote