Basic bot in a working state.

This commit is contained in:
Jinks 2015-10-21 07:05:29 +02:00
parent 47abf398a1
commit 6c4161f17a
15 changed files with 2710 additions and 1 deletions

20
config.lua.template Normal file
View file

@ -0,0 +1,20 @@
-- config file template - copy this to config.lua
-- IRC Config
network = "irc.twitch.tv" -- network to connect (my default for quakenet)
nick = "YourStupidBot"
defaulChannels = {"#YourStupidBot", "#otherchannel"} --channels to join on startup
username = "YourStupidBot"
realname = "Stupid Lua IRC bot for twitch"
password = "oauth:<oauth_key>"
-- Plugin configs
yt_api_key = "<APIKeyFromGoogle>"
---------------------------
-- Add plugins here!
---------------------------
require('plugin.twitch')
require('plugin.google')
require('plugin.calc')
require('plugin.youtube')