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.

Command to change botnick?

Old posts that have not been replied to for several years.
Locked
s
syk
Voice
Posts: 22
Joined: Tue Jan 04, 2005 8:18 pm

Command to change botnick?

Post by syk »

Is there a way to make like say, a .nick command for the bot like..

<user> .nick bababba
*** bot is now known as bababba

well, nevermind that, I got it, but does anyone know a way to get the bot to keep the nickname given after .nick?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Code: Select all

.set nick bababba 
s
syk
Voice
Posts: 22
Joined: Tue Jan 04, 2005 8:18 pm

Post by syk »

demond wrote:

Code: Select all

.set nick bababba 
but for a channel command?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Code: Select all

bind pub n !nick foo
proc foo {n u h c t} {
  set ::nick $t
}
s
syk
Voice
Posts: 22
Joined: Tue Jan 04, 2005 8:18 pm

Post by syk »

ah ok, almost had it but not quite, thanks man
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

just thought to point out that slennox has scripted a tcl to do just this, called botnick.tcl :mrgreen:
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

YooHoo wrote:just thought to point out that slennox has scripted a tcl to do just this, called botnick.tcl
Works only via Command Console. :)
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
s
syk
Voice
Posts: 22
Joined: Tue Jan 04, 2005 8:18 pm

Post by syk »

thanks guys, but i got this one working 8)
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

Alchera wrote:
YooHoo wrote:just thought to point out that slennox has scripted a tcl to do just this, called botnick.tcl
Works only via Command Console. :)
Bah.. my version isn't so limited :shock:
Locked