LPC online programming environment for LPMUDs


inherit "/std/object.c";

void create()
{
  set_name("object");
  set_id("object");
  set_short("An object");
  set_long("This is an object.  You can push it.\n");
  set_weight(1);
  set_light(1);
  set_value(1);
}

void init()
{
  add_action("do_push","push");
}

int do_push()
{
  write("The object says: Hello world!\n");
  return 1;
}

// EOF


submitted by: michael-huang@uiowa.edu (Michael M. Huang)