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.

eggy output in dcc chat

Old posts that have not been replied to for several years.
Locked
n
nicks0r

eggy output in dcc chat

Post by nicks0r »

how can i see the normal output from my bots

ie there not showing anything in dcc chat

i have my console set to bcdhmos
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

I suppose that would depend 100% on what you consider "normal". Console uses the same flags as logfiles...

Code: Select all

   m  private msgs/ctcps to the bot
   k  kicks, bans, mode changes on the channel
   j  joins, parts, netsplits on the channel
   p  public chatter on the channel
   s  server connects/disconnects/notices
   b  information about bot linking and userfile sharing
   c  commands people use (via msg or dcc)
   x  file transfers and file-area commands
   r  (if use-console-r enabled) EVERYTHING sent to the bot by the server
   o  other: misc info, errors -- IMPORTANT STUFF
   w  wallops: msgs between IRCops (be sure to set the bot +w in init-server)
n
nicks0r

Post by nicks0r »

okay how can i set the console via scripting then

console $idx $chan "msbcxo"

is what im doing in my chon script but my console remains the same when i login
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

why do you need a script? this is a conf file variable.

Code: Select all

##### CONSOLE #####

# This is the default console mode. It uses the same event flags as the log
# files do. The console channel is automatically set to your "primary" channel,
# which is set in the modules section of the config file. Masters can change
# their console channel and modes with the '.console' command.

set console "mkcobxs"
Locked