Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'json'
- require 'cinch'
- UserName = 'Lunux'
- Canal = '#mirkofm'
- WatchWord = ''
- lunux = Cinch::Bot.new do
- configure do |c|
- c.nick = UserName
- c.channels = [Canal]
- c.server = "irc.pirc.pl"
- end
- on :connect do
- lunux.User('NickServ').send "IDENTIFY #{WatchWord}"
- end
- on :message, /\Alunux please\z/ do |m|
- msg = ["Czego?", "Wpierdol?", "WAT", "WOT", "Odejdź ode mnie"]
- messages = msg[rand(5)]
- lunux.Channel(Canal).send messages
- end
- end
- lunux.start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement