mikopits / sdbot

A simple Pokemon Showdown! bot framework written in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SDBot - A Pokemon Showdown Bot Framework

GoDoc Go Report Card

Description

SDBot is a bot framework written in Go for Pokemon Showdown designed to take advantage of Go's inherent concurrency.

Still in developmental stages. This means that the API is still likely to change at any time.

SDBot has the following dependencies.

Installation

You can go get it.

go get github.com/mikopits/sdbot

To install/update the package dependencies:

go get -u -v github.com/mikopits/sdbot

Example

To get the bot up and running and with a loaded example plugin:

package main

import (
  "github.com/mikopits/sdbot"
  "github.com/mikopits/sdbot/examples/plugins"
)

func main() {
  b := sdbot.NewBot("path/to/your/config.toml")
  b.RegisterPlugin(plugins.HelloWorldPlugin(), "hello world")
  b.RegisterPlugin(plugins.EchoPlugin(), "echo")
  b.RegisterTimedPlugin(plugins.CountPlugin(), "count")
  b.Connect()
}

And be sure to set your config.toml file in the same directory (See the example).

Contribute

If you've gotten panics or have any other problems, go ahead and open an issue.

Have an awesome feature you want to add? Looking at the source code and know you can solve a problem much more elegantly? Fork the project, develop the feature on its own branch, and submit a pull request. Or you can open an issue, tell me how dumb I am, and I can do it myself, I suppose.

TODOs

  • Tests
  • Battle logic
  • More example plugins that sweep more features

About

A simple Pokemon Showdown! bot framework written in Go

License:MIT License


Languages

Language:Go 100.0%