Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require "cgi"
- require "cinch"
- PORT = 6667
- BOT_NICK = "nrq"
- BOT_REALNAME = BOT_NICK
- BOT_USER = BOT_REALNAME
- SERVER_NAME = "irc.pirc.pl"
- PASSWORD = "PASS"
- CHANNEL_NAME = "#mirkofm"
- bot = Cinch::Bot.new do
- configure do |c|
- c.server = SERVER_NAME
- c.port = PORT
- c.channels = CHANNEL_NAME
- c.nick = BOT_NICK
- c.realname = BOT_REALNAME
- c.user = BOT_USER
- c.password = PASSWORD
- end
- on :message, /\br[uoó]mie[nń]ce\s\b/i do |m|
- m.reply("janoosh zboczeniec: http://i.imgur.com/rjuhd2C.png")
- end
- end
- bot.start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement