Finally remembering the question I had thought about while in school. Is it possible to put a public function inside a gani scripting and call it from a server script?
Something like:
Gani Script -
PHP Code:
public function ganiStuff( newStuff )
{
this.chat = temp.newStuff
}
Server Script -
PHP Code:
function onCreated()
{
showani( blah );
with( showani( 300 ) )
{
this.ganiStuff();
}
}