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.

Hey all, couple authserv & command questions

Old posts that have not been replied to for several years.
Locked
C
Chris

Hey all, couple authserv & command questions

Post by Chris »

I've used the search feature and checked google for a couple of days but I can't seem to figure this out. I have an extra account setup on authserv for my bot on gamesnet. For some reason, I just can't get the bot to auth. I've tried both this:

set init-server {
putserv "MODE $botnick +i-ws"
putserv "PRIVMSG AuthServ@Services.GamesNET.Net :auth <handle> <password>"
}

and a couple of scripts from the tcl archive. I was wondering, could it be because the cookie was originally from a different host then the one the bot is running on now? Is there a way I can re-register from the shell / IP that the bot is using? I tried the register-authserv script from the tcl archive and that didn't seem to be working (bug in the script, something about variables). Can I issue standard mIRC commands from the telnet bot and just manually instruct the bot to register? I will have to try to register from the init-server in the conf file, anyone know the command for that? (Sorry, there are like 40 questions here in one).

Also, on a less important note, does anyone know the tcl script or the script that people use that has a trivia which starts with !trivia and ends with !strivia? That's my favorite one from IRC that I've seen but I cannot find it anywhere online to use/download.

Thanks in advance to any help. :)
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

if you're using eggdrop 1.6.15 , then set init-server won't work. There's a proc for init-server in which you should add your line.

I'm sure you can find lots of script for auth other than the one you're using, or you can configure an other-service script to suite your server's services.
C
Chris

Post by Chris »

Here's the exact coding I'm using now for 1.6:

proc evnt:init_server {type} {
global botnick
putquick "MODE $botnick +i-ws"
putquick "PRIVMSG AuthServ@Services.GamesNET.Net :auth <account> <password>"
}

The <account> <password> is obviously replaced with an extra account I had created for the bot. This is what doesn't seem to work. :(
C
Chris

Post by Chris »

Ha! Found it. I hadn't set the mask for the account I was using since I made it from my computer but eggdrop is running on another IP. Sweet, it works :)
Locked