#include #include "/realms/babylon/area/customdefs.h" inherit LIB_ROOM; static void create() { room::create(); SetClimate("indoors"); SetAmbientLight(30); SetShort("a whole new room"); SetLong("This is an entirely different place."); SetItems( ([ "template" : "That's what this is.", ]) ); SetInventory( ([ MY_OBJ "/table" : 1, MY_NPC "/fighter" : 1, ]) ); } void init(){ ::init(); }