Advertisement
Namasteh

Untitled

Feb 10th, 2014
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. require 'cinch'
  2. require 'ostruct'
  3. require_relative "lib/eve/plugins/weather"
  4.  
  5.  
  6. Config = OpenStruct.new
  7.  
  8. Config.dispatch = ["foo"]
  9.  
  10.  
  11. bot = Cinch::Bot.new do
  12.   configure do |c|
  13.   c.server = "s4tisf4ction.catiechat.net"
  14.   c.channels = ["#Eve"]
  15.     c.nick = "Aly"
  16.     c.user = "Eve"
  17.     c.realname = "Eve Test Version"
  18.   c.password = "nspass"
  19.   c.plugins.plugins = [Cinch::Plugins::Weather];
  20.  
  21.  
  22.   end
  23. end
  24.  
  25. bot.start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement