Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My Ruby IRC bot doesn't connect to the IRC server. What am I doing wrong?

Tags:

ruby

bots

irc

require "socket"

server = "irc.rizon.net"
port = "6667"
nick = "Ruby IRC Bot"
channel = "#0x40"

s = TCPSocket.open(server, port)
s.print("USER Testing", 0)
s.print("NICK #{nick}", 0)
s.print("JOIN #{channel}", 0)

This IRC bot doesn't connect to the IRC server, What am I doing wrong?

like image 850
JavaNoob Avatar asked Mar 01 '10 13:03

JavaNoob


2 Answers

It failed with this message:

:irc.shakeababy.net 461 * USER :Not enough parameters

so change your code. For example, this one works:

require "socket"

server = "irc.rizon.net"
port = "6667"
nick = "Ruby IRC Bot"
channel = "#0x40"

s = TCPSocket.open(server, port)
print("addr: ", s.addr.join(":"), "\n")
print("peer: ", s.peeraddr.join(":"), "\n")
s.puts "USER testing 0 * Testing"
s.puts "NICK #{nick}"
s.puts "JOIN #{channel}"
s.puts "PRIVMSG #{channel} :Hello from IRB Bot"

until s.eof? do
  msg = s.gets
  puts msg
end

For more information about USER, see http://en.wikipedia.org/wiki/List_of_Internet_Relay_Chat_commands#USER

like image 113
greg Avatar answered Nov 17 '22 03:11

greg


I wrote a tiny IRC bot framework you may wish to use (as a reference): http://github.com/radar/summer.

like image 1
Ryan Bigg Avatar answered Nov 17 '22 03:11

Ryan Bigg