View Single Post
  #1  
Old 07-14-2006, 09:49 AM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
Crash NC: Return in destroyed object.

NPC1:
PHP Code:
function onCreated()
  {
  
= new TStaticVar();
  
v.join("crasher");
  } 
CLASS crasher:
PHP Code:
function onCreated()
  {
  return 
stuff();
  }
function 
stuff()
  {
  
this.destroy();
  return 
true;
  } 
=] Happy Crashing.
Reply With Quote