Advertisement
Namasteh

Untitled

Feb 10th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.43 KB | None | 0 0
  1. require 'cinch'
  2. require 'ostruct'
  3. require_relative "lib/eve/plugins/weather"
  4.  
  5.  
  6. Config = OpenStruct.new
  7.  
  8. Config.dispatch = ["Namaste"]
  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 = "Victoria"
  16.     c.user = "Eve"
  17.     c.realname = "Eve Test Version"
  18.   c.password = "b0xxy5476"
  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