mud/lib/domains/town/obj/room_item.c
2020-09-06 05:43:07 -07:00

19 lines
482 B
C

#include <lib.h>
inherit LIB_DUMMY; // These do not show up in desc, but you can look at them
int ShowRoomDesc(){
this_player()->eventDescribeEnvironment();
tell_room(environment(),this_player()->GetName()+" looks around.",({ this_player() }) );
return 1;
}
static void create() {
dummy::create();
SetKeyName("room");
SetId(({"here","around","place","area" }));
SetAdjectives("this", "current");
SetShort("");
SetLong( (: ShowRoomDesc :) );
}