I tried this:
PHP Code:
function onCreated()
{
// Replace 'obj' with one of the following:
// findPlayer("accountname")
// findNPC("npcname")
with(findplayer("Chompy")) funcOne();
}
public function funcOne()
{
temp.foo = new TStaticVar();
temp.foo.funcTwo = function() {
echo("bar");
};
temp.foo.funcTwo();
}
worked fine for me? o.o