Browse Source

add js plugin

encrypt 8 years ago
parent
commit
8adbf86efb
1 changed files with 13 additions and 2 deletions
  1. 13 2
      tubiabot.rb

+ 13 - 2
tubiabot.rb

@@ -31,19 +31,30 @@ class Amici
   match /lavor(o|are|atori)/
 
   def execute(m)
-    users = [ "qup", "imega", "gresci","jigen","lgine","encrypt" ]
+    users = [ "qup", "imega", "gresci", "jigen", "lgine", "encrypt", "thegamer" ]
     requests = [ "oggi non ho voglia di fare un cazzo", "caffè?", "andiamo al bar?" ]
     m.reply users.sample+" "+users.sample+" "+requests.sample
   end
 end
 
+class JS
+  include Cinch::Plugin
+
+  match /js/
+
+  def execute(m)
+    frameworks = ["Angular", "React", "Ember", "Meteor"]
+    loves = ["è una figata", "è bellissimo"]
+    m.reply frameworks.sample+" "+loves.sample
+  end
+end
 
 bot = Cinch::Bot.new do
   configure do |c|
     c.server = "irc.mufhd0.net"
     c.nick = "TubiaBot"
     c.channels = ["#indivia"]
-    c.plugins.plugins = [Caffe, ToniNegri,Amici]
+    c.plugins.plugins = [Caffe, ToniNegri, Amici, JS]
   end
 end