/* /secure/cmds/creator/more.c * from the Dead Souls Object Library * more FILE * created by Descartes of Borg 951104 */ #include #include #include "include/more.h" inherit LIB_DAEMON; mixed cmd(string str) { if( !str || str == "" ) return "Syntax: "; return this_player()->eventPage(str, MSG_SYSTEM | MSG_NOCOLOUR); } string GetHelp(){ return ("Syntax: more \n\n" "Pages through the file you name. While inside the pager, you " "have access to the following commands:\n" + LIB_PAGER->GetHelp("pager") + "\n\n" "See also: cat, ed, head, tail"); }