This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Hiding info in .botinfo ?

Old posts that have not been replied to for several years.
Locked
o
optik
Voice
Posts: 12
Joined: Wed Jul 21, 2004 3:17 pm

Hiding info in .botinfo ?

Post by optik »

Hello, I was wondering if there is a way to hide your bots' info in in the .botinfo command like chans , network names etc...
User avatar
KrzychuG
Master
Posts: 306
Joined: Sat Aug 16, 2003 2:51 pm
Location: Torun, Poland
Contact:

Post by KrzychuG »

src/cmds.c, function cmd_botinfo (near the end of function)

Code: Select all

    if (s[0]) {
      s[strlen(s) - 2] = 0;
      dprintf(idx, "*** [%s] %s <%s> (%s) [UP %s]\n", botnetnick,
              ver, network, s, s2);
    } else
      dprintf(idx, "*** [%s] %s <%s> (%s) [UP %s]\n", botnetnick,
              ver, network, BOT_NOCHANNELS, s2);
  } else
    dprintf(idx, "*** [%s] %s <NO_IRC> [UP %s]\n", botnetnick, ver, s2);
Modify for your personal needs ;)
Que?
o
optik
Voice
Posts: 12
Joined: Wed Jul 21, 2004 3:17 pm

Post by optik »

niiice thanks a lot
Locked