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.

change the botnick script

Old posts that have not been replied to for several years.
Locked
K
Kimmi
Halfop
Posts: 58
Joined: Thu Jul 24, 2003 4:17 pm
Location: Norway
Contact:

change the botnick script

Post by Kimmi »

Hello

I was looking for a script where +n can change te botnick with dcc commands, and I found a script in the tcl-archive but It didnt work, looks like only one half of the script...

proc bs_nickbot {nick uhost arg} {
putserv "NICK $arg"
}
putlog "Partyline Botnick changer ByDat Loaded - .botnick <nick>"
bind dcc - botnick bs_nickbota

anyone out there that knows what the other half of the script should be like...
Kimmi@EFnet
User avatar
Aron
Halfop
Posts: 86
Joined: Sat Mar 15, 2003 8:35 am

Post by Aron »

that script should work, but change

Code: Select all

bind dcc - botnick bs_nickbota
to

Code: Select all

bind dcc - botnick bs_nickbot
.

You made a typo :)
The best way to start learning is to start helping.
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

You can also change bot nick with this command:

.dump nick <new-nick>
K
Kimmi
Halfop
Posts: 58
Joined: Thu Jul 24, 2003 4:17 pm
Location: Norway
Contact:

Post by Kimmi »

thanx...

but I just got another problem... the bot changes its nick back just afther one sec... how do I make it keep the nick, untill I change it again???
Kimmi@EFnet
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

Put set keep-nick to 0, then your bot wont regain nick back...Now you have set keep-nick 1 make like this: set keep-nick 0
K
Kimmi
Halfop
Posts: 58
Joined: Thu Jul 24, 2003 4:17 pm
Location: Norway
Contact:

Post by Kimmi »

:)))
It worked... thanx dude...
Kimmi@EFnet
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

np
Locked