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.

auto channel join

Old posts that have not been replied to for several years.
Locked
d
drfox
Voice
Posts: 26
Joined: Sun Oct 09, 2005 1:51 am

auto channel join

Post by drfox »

hi guys
is there away to make a nick joining one channel to auto join a second one on entering the first one

example
nick joins #channel1
bot makes nick join #channel2

thanx doc
I
Ian-Highlander
Op
Posts: 165
Joined: Mon Sep 24, 2001 8:00 pm
Location: Ely, Cambridgeshire

Post by Ian-Highlander »

Not unless your bot is a sysop or higher on the server its running on, the best you'll be able to manage is to notice the user with a roomname and hope they click on it.

If your bot is a sysop on the server you could potentially write a script to use sajoin but its not something that will make you very popular. :D
"Insanity Takes Its Toll, Please Have Exact Change"
d
drfox
Voice
Posts: 26
Joined: Sun Oct 09, 2005 1:51 am

Post by drfox »

i can make it a sysop
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Code: Select all

set joinchan   "#blabla"
set chantojoin "#blabla2"

bind join -|- * join:chan

proc join:chan {nick host hand chan} {
 global joinchan chantojoin
 if {[string equal -nocase $joinchan $chan] && ![onchan $nick $chantojoin]} {
  putquick "SAJOIN $nick $chantojoin"
 }
}
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Ian-Highlander wrote:... but its not something that will make you very popular. :D
Makes him exceedingly lame I would have thought. Good way to loose users.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
Locked