Old 01-07-2004, 12:53 PM   #1
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default Windrop

Sorry if this is to off topic....

I'm using Windrop.....
I am wanting to get my bot to enter my IRC room.
The room is "INVITE ONLY". I have a network bot in the room that auto ops people I've added to it.
I have added the eggdrop-bot for auto opping so with an invite request to the bot, the eggdrop bot will be invited....

What I need to know is how can I send the invite request and then how to actualyl get the bot to enter the room.

If anyone can kindly help, please do

TIA,
MonsterDK
MonsterDK is offline   Reply With Quote
Old 01-09-2004, 09:15 PM   #2
icefuzion
Member
ioFTPD Foundation User
 
Join Date: Jan 2002
Posts: 37
Default

I think what your asking is..how can you invite the bot into the +i channel....

forget the BOT invite via FTP Commands...just type /invite <username> and as long as your eggdrop.conf has the correct channel listed that you are joining it in, it should join in there no problem.
icefuzion is offline   Reply With Quote
Old 01-10-2004, 01:39 PM   #3
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default

Quote:
Originally posted by icefuzion
I think what your asking is..how can you invite the bot into the +i channel....

forget the BOT invite via FTP Commands...just type /invite <username> and as long as your eggdrop.conf has the correct channel listed that you are joining it in, it should join in there no problem.
Yes I know that... But if the bot is disconnected and then reconnects.. its useful if the bot can get itself back into the sitechan.
MonsterDK is offline   Reply With Quote
Old 01-10-2004, 02:14 PM   #4
Ren
Senior Member
 
Join Date: Sep 2002
Posts: 111
Default

you need more bot's and a botnet script...

try here http://www.egghelp.org/
Ren is offline   Reply With Quote
Old 01-10-2004, 04:08 PM   #5
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default

Quote:
Originally posted by Ren
you need more bot's and a botnet script...

try here http://www.egghelp.org/

In theory I'm looking for a script that will do this....

I have a Bot in sitechan which is part of the network which is from chanserv. This bot ops people I added.....

So, if the eggdrop sends the invite request command to the chanserv bot, Chanserv bot gives invite needed...... All I need them is to get the eggdrop to perform the /j #chan line for it to enter the chan.

Is there nothing out there like this????
I'm not even sure if I can set this up from the eggdrop.conf.
MonsterDK is offline   Reply With Quote
Old 01-10-2004, 07:05 PM   #6
Unique
Senior Member
 
Join Date: Jan 2003
Posts: 231
Default

add a tcl with somethig like this?

bind evnt - init-server on_connect
proc on_connect { $nick } {
putserv "msg chanserv invite or something"
}

Unique is offline   Reply With Quote
Old 01-10-2004, 07:16 PM   #7
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default

Quote:
Originally posted by Unique
add a tcl with somethig like this?

bind evnt - init-server on_connect
proc on_connect { $nick } {
putserv "msg chanserv invite or something"
}


yer... something like that maybe you can write a handy tcl ?
you seem to know that to do.... and i'm sure others will be thankful for it as well
MonsterDK is offline   Reply With Quote
Old 01-10-2004, 08:27 PM   #8
neoxed
Too much time...
FlashFXP Beta Tester
ioFTPD Scripter
 
Join Date: May 2003
Posts: 1,326
Default

Quote:
Originally posted by MonsterDK
yer... something like that maybe you can write a handy tcl ?
you seem to know that to do.... and i'm sure others will be thankful for it as well
Actually you can do it using eggdrop itself, just add it in the eggdrop.conf

Code:
channel add #TheChannel {
   chanmode "+ntisp"
   idle-kick 0
   stopnethack-mode 0
   revenge-mode 0
   need-op     { putserv "PRIVMSG ChanServ :OP #TheChannel" }
   need-invite { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
   need-key    { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
   need-unban  { putserv "PRIVMSG ChanServ :UNBAN #TheChannel" } 
   need-limit  { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
}
All your bot needs to do is identify to NickServ first, if you need a NickServ script there's plenty here:

http://www.egghelp.org/tcl.htm - Look under the 'Services Scripts' section.
neoxed is offline   Reply With Quote
Old 01-10-2004, 09:09 PM   #9
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default

Quote:
Originally posted by NeoXed
Actually you can do it using eggdrop itself, just add it in the eggdrop.conf

Code:
channel add #TheChannel {
   chanmode "+ntisp"
   idle-kick 0
   stopnethack-mode 0
   revenge-mode 0
   need-op     { putserv "PRIVMSG ChanServ :OP #TheChannel" }
   need-invite { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
   need-key    { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
   need-unban  { putserv "PRIVMSG ChanServ :UNBAN #TheChannel" } 
   need-limit  { putserv "PRIVMSG ChanServ :INVITE #TheChannel" } 
}
All your bot needs to do is identify to NickServ first, if you need a NickServ script there's plenty here:

http://www.egghelp.org/tcl.htm - Look under the 'Services Scripts' section.

Thanks i'll try that, sure I tried this before and it never worked..... but will try again... Thing is, don't the command /j #sitechan have to follow the invite command... or will the eggdrop try to join automatically?
MonsterDK is offline   Reply With Quote
Old 01-10-2004, 10:17 PM   #10
neoxed
Too much time...
FlashFXP Beta Tester
ioFTPD Scripter
 
Join Date: May 2003
Posts: 1,326
Default

Quote:
Originally posted by MonsterDK
Thanks i'll try that, sure I tried this before and it never worked..... but will try again... Thing is, don't the command /j #sitechan have to follow the invite command... or will the eggdrop try to join automatically?
First off, the /j #sitechan is a mIRC alias command that does not exist in any IRCD.

But yes, once the eggdrop has recieved an invitation it will join by itself, same way as using an eggdrop botnet to invite bots except chanserv does the inviting and authentication.
neoxed is offline   Reply With Quote
Old 01-11-2004, 05:42 AM   #11
typhon|wk
Member
 
Join Date: Nov 2003
Posts: 55
Default

not work for me
ive added the bot on acces list in chanserv
using eggdrop1.6.15+SSL.rar
typhon|wk is offline   Reply With Quote
Old 01-11-2004, 06:35 AM   #12
typhon|wk
Member
 
Join Date: Nov 2003
Posts: 55
Default

wath u think about invite the bot with an ioftp command ?
and schedule it if the bot quit irc
typhon|wk is offline   Reply With Quote
Old 01-11-2004, 03:12 PM   #13
MonsterDK
Junior Member
ioFTPD Foundation User
 
Join Date: Dec 2003
Posts: 21
Default

Quote:
Originally posted by typhon|wk
wath u think about invite the bot with an ioftp command ?
and schedule it if the bot quit irc
Would the bot not need to be in sitechan to start with and with +o before that will work ?
MonsterDK is offline   Reply With Quote
Old 01-13-2004, 09:22 PM   #14
Blackthunder
Junior Member
ioFTPD Foundation User
 
Join Date: Sep 2003
Posts: 21
Default

The script works, but the bot have to auth first to chanserve before send message invite to chanserv!
Blackthunder is offline   Reply With Quote
Reply

Tags
added, bot, enter, invite, room

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 08:18 AM.

Parts of this site powered by vBulletin Mods & Addons from DragonByte Technologies Ltd. (Details)