Advertisement
Shiny_

szatan

May 15th, 2014
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.28 KB | None | 0 0
  1. require "cinch"
  2.  
  3. FAMINA__REGEX = /\bfamina?\b/i
  4.  
  5. bot = Cinch::Bot.new do
  6.     configure do |c|
  7.         c.server = "irc.pirc.pl"
  8.         c.channels = "#wykoppl"
  9.         c.nick = "DiggerowyTest"
  10.     end
  11.  
  12.     on :message, FAMINA__REGEX do |m|
  13.         m.reply "Proszę, nie mówcie o niej :("
  14.     end
  15. end
  16. bot.start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement