#define PATH "players/jubal/tag/" /******************************************************* * Players can either go netdead or quit when tagged. * To go netdead requires the remove_interactive() efun * otherwise use the quit version (just undef NETDEAD) *******************************************************/ #define NETDEAD /* Log file. * If you don't want one, just don't define LOG_FILE * If you do, LOGPOINTS is the number of points a player must have to be logged */ #define LOG_FILE "jubalstag" #define LOGPOINTS 3 /* define this if you want the booth's long() to print number of players */ #define LONGNUM /*******************************************/ /* You shouldn't need to change below here */ /*******************************************/ /* The paths for the files */ #define ROOM_FILE PATH"tagbooth" #ifdef NETDEAD #define TAGOBJ_FILE PATH"tagnet" #endif #ifndef NETDEAD /* not all drivers have #elif */ #define TAGOBJ_FILE PATH"tagquit" #endif /* This is the border used by the tagwho command */ #define BORDER \ "-----------------------------------------------------------------------\n"