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.

How do i add in the conf file so my bot can monitor more tha

Old posts that have not been replied to for several years.
Locked
k
kangoll

Post by kangoll »

why is it when i do the command to add a user to the global +o

.chattr [{binger}] +o #chan

it says no such user! but i checked to make sure that the nick is right. and i still get this message.

what is the real problem?

oh and how do i add to my conf file so my bot can sit in more than one channel?

channel add #channel {
chanmode "+nt-likm"
idle-kick 0
stopnethack-mode 0
revenge-mode 1
aop-delay 1:5
need-op { putserv "PRIVMSG #channel :hook me up!" }
need-invite { putserv "PRIVMSG #channel :let me in!" }

i tried two ways channel add #channel, #channel2 and channel add #channel #channel2 and channel add #channel

k
kangoll

Post by kangoll »

ok sorry bout that above question it was stupid i admit.

but for real how do you add another channel so your bot can sit in more than one

i tried channel add #channel1, channel2 and without the comma i also tried
#channel1
#channel2

i keep getting error msgs

P.S. Many thanks to PPSLIM you are very patient on helping out the newbies i really appriciate it!
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

You don't put both channel names in one command, you do the command twice:

channel add #channel1 {
blah blah blah
}

channel add #channel2 {
blah blah blah
}
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

Btw, defining static channels isn't a good idea. define them dynamically on the partyline.
k
kangoll

Post by kangoll »

what do you mean by dynamic? and if it's bad how do i set it? sorry i'm a real bad newbie
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

The basic command to add a dynamic channel is ".+chan #channel-name" on the dcc console.

In the dcc console, type ".help +chan" for detailed information.
Locked