https://github.com/petertseng/cinch-coupgame
Cinch plugin to play Coup
https://github.com/petertseng/cinch-coupgame
Last synced: 3 months ago
JSON representation
Cinch plugin to play Coup
- Host: GitHub
- URL: https://github.com/petertseng/cinch-coupgame
- Owner: petertseng
- Created: 2015-10-17T02:21:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-04T13:12:04.000Z (over 8 years ago)
- Last Synced: 2025-01-13T03:09:58.528Z (4 months ago)
- Language: Ruby
- Size: 301 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cinch-Coup
## Description
This is a Cinch plugin to enable your bot to moderate Coup by Rikki Tahta.
http://www.boardgamegeek.com/boardgame/131357/coup
## Usage
Here's an example of what your *bot.rb* might look like:
require 'cinch'
require './cinch-coupgame/lib/cinch/plugins/coup_game'bot = Cinch::Bot.new do
configure do |c|
c.nick = "CoupBot"
c.server = "irc.freenode.org"
c.channels = ["#playcoup"]
c.verbose = true
c.plugins.plugins = [
Cinch::Plugins::CoupGame
]
c.plugins.options[Cinch::Plugins::CoupGame] = {
:mods => ["caitlinface", "shard8"],
:channels => ["#playcoup"],
:settings => "settings.yml"
}
endend
bot.start
## Development
(pivotal tracker link)