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