Created
December 3, 2014 23:11
-
-
Save fuzzy/8e40cd894f19cb74e2a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/////////////////////////// | |
// Global config section // | |
/////////////////////////// | |
// The command character (ie: first character of the message, eg: !seen) | |
"cmdchar": "!", | |
// The directory that our event based, executable commands live in | |
"command_dir": "", | |
// The directory that our loadable plugins live in | |
"plugin_dir": "", | |
///////////////////// | |
// Bot definitions // | |
///////////////////// | |
"bots": [ | |
// Freenode | |
{ | |
// Bot nickname | |
"nick": "GehenBot", | |
// Bot username (whois info) | |
"user": "GehenBot", | |
// Server to connect to | |
"server": "irc.freenode.net:6667", | |
// Channels to join | |
"channels": ["#fuzztest", "#disrupted"], | |
// Scripts to load | |
"scripts": ["greet.lua"] | |
}, | |
// EFNet | |
{ | |
"nick": "GehenBot", | |
"user": "GehenBot", | |
"server": "irc.prison.net:6667", | |
"channels": ["#fuzztest"], | |
"scripts": ["greet.lua"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment