Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require "cinch"
- FAMINA__REGEX = /\bfamina?\b/i
- bot = Cinch::Bot.new do
- configure do |c|
- c.server = "irc.pirc.pl"
- c.channels = "#wykoppl"
- c.nick = "DiggerowyTest"
- end
- on :message, FAMINA__REGEX do |m|
- m.reply "Proszę, nie mówcie o niej :("
- end
- end
- bot.start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement