View Single Post
  #1  
Old 06-22-2006, 01:25 PM
JustBreathe JustBreathe is offline
Registered User
Join Date: Jun 2006
Posts: 59
JustBreathe is on a distinguished road
GS2: onObjectCreated( obj )?

Is there a way to have more events in the server, such as:

PHP Code:
// On Control-NPC
function onObjectCreatedobj )
  {
  echo( 
obj.name @"["obj.objectType() @"]: created.");
  } 
The problem with that is... TGraalVar IS an object, so... You'd probably have a lot of triggers if you set strings.

Usage:
PHP Code:
// On Control-NPC
function onObjectCreatedobj )
  {
  
obj.join("global");
  } 
Reply With Quote