[Solved] Modular service for IRC channels
Moderator: General Moderators
[Solved] Modular service for IRC channels
I have a bot that was built on the wollabot found here:
http://wollabot.sourceforge.net/
My question seem simple, but I cannot find an answer anywhere. The bot is connected to Gamesurge, an IRC server, which requires authenticating to an account for certain privileges. Here are my IRC preferences in my bot.ini:
[main]
; IRC preferences
server = "irc.gamesurge.net"
port = "6667"
nickname = "thebot'snick"
username = "thebot'susername"
The command to auth from an IRC client is:
/authserv auth username password
Does anybody know how I can get the bot to auth to the acount? I've tried many different things.
http://wollabot.sourceforge.net/
My question seem simple, but I cannot find an answer anywhere. The bot is connected to Gamesurge, an IRC server, which requires authenticating to an account for certain privileges. Here are my IRC preferences in my bot.ini:
[main]
; IRC preferences
server = "irc.gamesurge.net"
port = "6667"
nickname = "thebot'snick"
username = "thebot'susername"
The command to auth from an IRC client is:
/authserv auth username password
Does anybody know how I can get the bot to auth to the acount? I've tried many different things.
Last edited by Samurai on Tue Jun 15, 2004 9:17 pm, edited 1 time in total.
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
Solved
$this->send('PRIVMSG authserv@services.gamesurge.net :AUTH username password');
$this->send('MODE nickname +x');
I didn't need a delay in the nd, I just had the snytax wrong on the second line.
$this->send('MODE nickname +x');
I didn't need a delay in the nd, I just had the snytax wrong on the second line.