Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 18th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. require 'rubotio'
  2.  
  3. client = Rubotio::Client.new('naobot', 'irc.rizon.net', 6667, '#gamenao')
  4.  
  5. client.add_command("status") do
  6.   response = Net::HTTP.get_response( URI.parse( "http://luna.gamenao.com/online.php" ) )
  7.   privmsg("There are #{response.body} players online")
  8. end
  9.  
  10. client.connect