PDA

View Full Version : Windrop


MonsterDK
01-07-2004, 12:53 PM
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

icefuzion
01-09-2004, 09:15 PM
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.

MonsterDK
01-10-2004, 01:39 PM
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.

Ren
01-10-2004, 02:14 PM
you need more bot's and a botnet script...

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

MonsterDK
01-10-2004, 04:08 PM
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.

Unique
01-10-2004, 07:05 PM
add a tcl with somethig like this?

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

:confused:

MonsterDK
01-10-2004, 07:16 PM
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"
}

:confused:


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

neoxed
01-10-2004, 08:27 PM
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

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.

MonsterDK
01-10-2004, 09:09 PM
Originally posted by NeoXed
Actually you can do it using eggdrop itself, just add it in the eggdrop.conf

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?

neoxed
01-10-2004, 10:17 PM
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.

typhon|wk
01-11-2004, 05:42 AM
not work for me :(
ive added the bot on acces list in chanserv
using eggdrop1.6.15+SSL.rar

typhon|wk
01-11-2004, 06:35 AM
wath u think about invite the bot with an ioftp command ?
and schedule it if the bot quit irc

MonsterDK
01-11-2004, 03:12 PM
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 ? :confused:

Blackthunder
01-13-2004, 09:22 PM
The script works, but the bot have to auth first to chanserve before send message invite to chanserv!