View Single Post
  #1  
Old 01-25-2010, 02:39 AM
Grey Grey is offline
Classic Developer
Grey's Avatar
Join Date: Mar 2007
Location: Wales, UK
Posts: 134
Grey will become famous soon enough
Send a message via AIM to Grey
TStaticVar names

Just curious whether TStaticVar's are supposed to have a name when created on Clientside because I can't get them to display.

PHP Code:
//#CLIENTSIDE
...
temp.variable "Fish";
temp.testing= new TStaticVar("Name_"@variable);
testing.one"things";
testing.two "stuff";
player.chat testing;
... 
Will output nothing.

But serverside..

PHP Code:
...
temp.variable "Fish";
temp.testing= new TStaticVar("Name_"@variable);
testing.one"things";
testing.two "stuff";
echo(
testing);
... 
Outputs Name_Fish
Reply With Quote