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.

/mode Nickname +x

Old posts that have not been replied to for several years.
Locked
M
MrTangent

/mode Nickname +x

Post by MrTangent »

If you're registered with X on Undernet you can log in and create a hidden host by using the subject's command (so that your IP goes from something like ~squirrel@nyc.roadrunner.com to Nickname@Nickname.undernet.org). I do this when I'm logged in with my normal IRC client.

However, I can't figure out how to do this with Eggdrop. I can log in to X with Eggdrop using a './msg x@channels.undernet.org login Nickname Password' but I can't figure out how to do the '/mode Nickname +x' command?

I read all the documentation and must have missed it. Is there any way from either DCC/msg'ing the bot to do this? Thanks very much in advance!
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

You can use simple TCL script for this:

Code: Select all

bind evnt - init-server my:login
proc my:login init-server {
  putquick "PRIVMSG  x@channels.undernet.org login Nickname Password" 
  putquick "MODE $::botnick +x"
}
Where is nickname and password, replace it with your own values...Just save this as .tcl file and load it in bot....
M
MrTangent

Post by MrTangent »

]Kami[ wrote:You can use simple TCL script for this:

Code: Select all

bind evnt - init-server my:login
proc my:login init-server {
  putquick "PRIVMSG  x@channels.undernet.org login Nickname Password" 
  putquick "MODE $::botnick +x"
}
Where is nickname and password, replace it with your own values...Just save this as .tcl file and load it in bot....
Thanks. I figured out how to do it with the dump command (.dump mode NickName +x) but I like yours since it will be automated. Appreciate the response!
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

No problem, nice to hear that it help you :)
D
DarkJFMan
Halfop
Posts: 85
Joined: Mon Dec 15, 2003 3:19 pm

Post by DarkJFMan »

I'm very new to eggdrop, I installed one today, and I got help in #eggdrop on gamesurge, without them I wouldn't be able to run mine. But 1 small problem, I'm trying to make my bot auth, I tried to use your line it didn't work and it wouldn't start eggdrop.conf

What is the correct inputs I should have where you put my:login ? Thanks for help.
D
DarkJFMan
Halfop
Posts: 85
Joined: Mon Dec 15, 2003 3:19 pm

Post by DarkJFMan »

bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
PRIVMSG AuthServ@Services.GameSurge.Net :auth username pw
putquick "MODE $botnick +xi"
}

That didn't work either
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

zzzz:

Code: Select all

bind evnt - init-server my:login 
proc my:login init-server { 
  putquick "PRIVMSG AuthServ@Services.GameSurge.Net :auth username pw" 
  putquick "MODE $::botnick +x" 
} 
:roll:
D
DarkJFMan
Halfop
Posts: 85
Joined: Mon Dec 15, 2003 3:19 pm

Post by DarkJFMan »

But where you my:login are you supposed to put something else?
Locked