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.

A tcl way to reconnect our EggDrop on server wanted?

Old posts that have not been replied to for several years.
Locked
C
Caribou
Voice
Posts: 28
Joined: Thu Apr 15, 2004 12:51 pm
Location: France

A tcl way to reconnect our EggDrop on server wanted?

Post by Caribou »

Hello :D

Is there any TCL way to make our eggdrop reconnecting on another server we just choosed before ?

I mean another network server, sometimes on this network one server is more laggy than other, and i wanna be able to make bot switching on servers.

Thats mean a tcl script or command like : .reconnect irc.server2.org
And Eggdrop will reconnect on this server.

I don't know if it is possible, the only part i learned about joining server was the config.txt file with set servers.. but i can't control this
User avatar
strikelight
Owner
Posts: 708
Joined: Mon Oct 07, 2002 10:39 am
Contact:

Post by strikelight »

No Tcl is needed... See .help jump in your bot's partyline.
For permanent server changes, you will need to edit the servers variable in your bot's config.
C
Caribou
Voice
Posts: 28
Joined: Thu Apr 15, 2004 12:51 pm
Location: France

Post by Caribou »

Yeah by tcl i meant a way to launch it out of partyline :D

and jump worked yeah, thanks a lot Strikelight

Code: Select all

bind pub - !reconnect reconnect
proc reconnect {nick uhost hand chan arg} {
 if {[isop $nick $chan]} {
  if {$arg != ""} {
   jump $arg
  } else {
   jump
  }
 }
}
Locked