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.

Anyone know how to auth for irc.GameSurge.net?

Old posts that have not been replied to for several years.
Locked
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Anyone know how to auth for irc.GameSurge.net?

Post by Kev1n »

I've tried all the auth103.tcl, auth-x, auth-w.tcl and they are all for quakenet and stuff like that. They didn't work for gamesurge. I've got weather.tcl, adminserv.tcl and other scripts working in the past.

Anyone have any .tcls that might work with ChanServ / AuthServ on gamesurge?

Any help is greatly appreciated. Thanks.
k
kanibus
Halfop
Posts: 44
Joined: Tue May 03, 2005 7:22 am

Post by kanibus »

why dont you just make one all you have to do is:

Code: Select all

set init-server {
  putquick "AUTHSERV AUTH name password"
 }
or you could do

Code: Select all

set init-server {
  putquick "PRIVMSG AuthServ@Services.GameSurge.net AUTH name password"
 }
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Post by Kev1n »

Thanks.

My original line was:

Code: Select all

set init-server { putserv "MODE $botnick +i-xws" }
After I added that, should it be looking like this?

Code: Select all

set init-server {
  putquick "PRIVMSG AuthServ@Services.GameSurge.net AUTH acct pass"
  putserv "MODE $botnick +i-xws"
}
k
kanibus
Halfop
Posts: 44
Joined: Tue May 03, 2005 7:22 am

Post by kanibus »

yeah that will work but on gamesurge you dont need to set mode 'w' or 's' and to use 'x' you have to be auth'd to the account first so you ahave it in the right order
Locked