A modular Twitch bot made in Go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Larke 2e15029c3c Update README 1 year ago
examples making it go gettable 2 years ago
.gitignore Update .gitignore 2 years ago
LICENSE Initial commit 2 years ago
README.md Update README 1 year ago
bot.go making it go gettable 2 years ago
builder.go making it go gettable 2 years ago
client.go making it go gettable 2 years ago
go.mod Update go.mod 2 years ago
parser.go making it go gettable 2 years ago

README.md

twitchbot

Go Twitch Bot Api wrapper, with an easy to use interface.

Example

package main

import (
	"github.com/witer33/twitchbot"
)

func main() {
	bot := twitchbot.NewBot("oauth:abcdef", "mybot", []string{"channel"})

	bot.OnMessage(func(bot *twitchbot.Bot, message *twitchbot.Message) {
		if message.Message == "!ping" {
			message.Reply("pong")
			message.Delete()
		}
	})

	bot.Run()
}

TODO: Migrate from python bot

  • Urban Dictionary definition requests, !urban and mod only, filter words
  • Standard Dictionary, !define to pull a max number of defintions (store in DB?)
  • Temperature, !temp to convert xF or xC values provided
  • Twitter Shoutouts, !tso obtain the given Twitch users probable twitter URL

#TODO: New

  • Twitch Channel Point reactions (DB?)