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.

Changing bot's nick..

Old posts that have not been replied to for several years.
Locked
User avatar
Tristam
Voice
Posts: 17
Joined: Sun Sep 21, 2003 11:28 am
Location: Finland

Changing bot's nick..

Post by Tristam »

Probably a very simple thing you all will laugh at.. but I'll take the risk :P

Okay, I want my bot to have nick |Nick| or ^Nick^ or so.. But it wont start if I just edit it in config file.. (because of the special characters) So I tried to make a tcl to change it later..

Code: Select all

bind pub o !nick nick
proc nick { nick host hand chan text } {
putserv "NICK :$text"
 }
It works fine, but after few seconds the bot changes back.. Here's the info from partyline:

Code: Select all

<TrisBot> [00:17] Nickname changed to '|TrisBot|'???
<TrisBot> [00:17] Switching back to nick TrisBot
Any idea on how to use some special characters in the bot's nick? :)
Tristam - tristam@iki.fi
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Be shure you have keep-nick set to 0. Also, do a lil search on the forum about the nick and special characters.
Once the game is over, the king and the pawn go back in the same box.
User avatar
Tristam
Voice
Posts: 17
Joined: Sun Sep 21, 2003 11:28 am
Location: Finland

Post by Tristam »

Thanks! My god I'm stupid sometimes :)
Tristam - tristam@iki.fi
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

If you have keep-nick 0, you could also type in eggdrop .dump nick new-nick
Locked