View Single Post
  #1  
Old 11-23-2006, 11:13 PM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
The No-Where Variable!

PHP Code:
//#CLIENTSIDE
function onCreated()
  {
  
player.tv = {1,2,3};
  
this.var = new TStaticVar();
  echo( 
this.var.tv ); // returns 1,2,3
  
echo( this.var.tv.size() ); // returns 0
  
echo( this.var.tv ); // returns 0
  

=]
Reply With Quote