[Package Index | Mudlib Index | Effect Index]
Written by Pinkfish
Started 30th of June
.
int is_allowed(string person)This method tests to see if the person in question is either the owner or is allowed.
int is_allowed_in(string person)This method checks to see if they are allowed in. Allow anyone in if the room is not locked.
void load_room()This method loads the room setup.
string * query_allowed()This method returns the current allowed list on the room.
string query_front_door()This method queries the current front door.
string query_owner()This method returns the owner of the room.
string query_save_file()This method returns the save file the owned room.
void save_room()This method saves the room setup.
void set_front_door(string exit)This method sets the exit that is the front door.
void set_owner(string owner)This method sets the owner of the room.
void set_save_file(string name)This method sets the save file for the owned room.
int do_allow(string name)This the main entry point for the allow command.
int do_disallow(string name)This the main entry point for the disallow command.
int do_throwout(object * people)This is the main entry point for the throwout command.
void set_allowed(string * allowed)This method sets the allowed array for the room.