Basic bot in a working state.
This commit is contained in:
parent
47abf398a1
commit
6c4161f17a
15 changed files with 2710 additions and 1 deletions
20
config.lua.template
Normal file
20
config.lua.template
Normal 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')
|
Loading…
Add table
Add a link
Reference in a new issue