Talk:Bahamut

From IRC Wiki
Revision as of 01:06, 1 January 2012 by Katsklaw (talk | contribs) (Created page with "It should be noted that users using canned services packages that services aliases are hard coded and operserv is on the stats server. To fix, open include/msg.h and edit this b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

It should be noted that users using canned services packages that services aliases are hard coded and operserv is on the stats server.

To fix, open include/msg.h and edit this block which starts on line 238. Change 'Stats_Name' to 'Services_Name' then save the file. You will have to recompile then restart the ircd.

AliasInfo aliastab[] = {

   /* AII_NS */ {MSG_NS, NICKSERV, Services_Name},
   /* AII_CS */ {MSG_CS, CHANSERV, Services_Name},
   /* AII_MS */ {MSG_MS, MEMOSERV, Services_Name},
   /* AII_RS */ {MSG_RS, ROOTSERV, Services_Name},
   /* AII_OS */ {MSG_OS, OPERSERV, Stats_Name},
   /* AII_SS */ {MSG_SS, STATSERV, Stats_Name},
   /* AII_HS */ {MSG_HS, HELPSERV, Stats_Name},
   { 0 }

};

DO NOT REMOVE ANY OF THESE LINES UNLESS YOU KNOW WHAT YOU ARE DOING!