0.0
No commit activity in last 3 years
No release in over 3 years
A plugin to easily rename a cinch IRC-bot so that either everyone or an admin can do it.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 2.0.1
 Project Readme

cinch-rename

A plugin for renaming Cinch IRC-bots.

Usage

require 'cinch'
require 'cinch/plugins/rename'

bot = Cinch::Bot.new do
  configure do |c|
    c.server = "irc.freenode.org"
    c.channels = ["#cinch-bots"]
    c.plugins.plugins = [Cinch::Plugins::Rename]
    c.plugins.options = {
      Cinch::Plugins::Rename => {
        "admin" => [
          "SomeUser",
        ]
      }
    }
  end
end

bot.start

!rename SomeOtherNick

Options

admin is an optional config variable that takes a list of user nicks that can change the bots name.