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 to protect bot from kicks

Old posts that have not been replied to for several years.
Locked
f
finkoisti
Voice
Posts: 5
Joined: Wed Mar 16, 2005 1:24 pm

How to protect bot from kicks

Post by finkoisti »

How to configure bot or can I use some script to protect my bot from kicks?
Now the channel operators can kick the bot and when it joins back it doesn't get operator status back automatically.

So what is the easyest way to fix this..
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

set up your bot to get ops from ChanServ as needed
T
Tomm
Voice
Posts: 19
Joined: Mon Jul 18, 2005 3:30 am
Location: Kalmar Län - Sweden
Contact:

Post by Tomm »

Hello,

How do I make so ChanServ op my bot :?: I've been trying to look over the different help alternatives, but i must have overseen it. :)
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

add the bot as AOP and

Code: Select all

.chanset #channel need-op putserv "nickserv identify password"; putserv "chanserv op #channel $botnick"
T
Tomm
Voice
Posts: 19
Joined: Mon Jul 18, 2005 3:30 am
Location: Kalmar Län - Sweden
Contact:

Post by Tomm »

demond wrote:add the bot as AOP and

Code: Select all

.chanset #channel need-op putserv "nickserv identify password"; putserv "chanserv op #channel $botnick"
Tried the command you showed me, but got the following message: Due to security concerns, only permanent owners can set these modes.

I don't understand that, because I'm the owner of the bot, so I must have done something wrong I guess :?:
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

in bot's config file add:

Code: Select all

set owner yournick
then .rehash and try again .chanset
Locked