This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/mumbledj/config.lua
2014-09-14 19:18:32 -07:00

28 lines
678 B
Lua

-------------------------
-- MumbleDJ --
-- By Matthieu Grieger --
-------------------------------------------------
-- config.lua --
-- This is where all the configuration options --
-- for the bot can be set. --
-------------------------------------------------
local config = {}
-------------------------
-- GENERAL CONFIGURATION
-------------------------
-- Bot username
-- DEFAULT VALUE: "MumbleDJ"
config.BOT_USERNAME = "MumbleDJ"
-- Default channel
-- DEFAULT VALUE: "Bot Testing"
config.DEFAULT_CHANNEL = "Bot Testing"
-- Command prefix
-- DEFAULT VALUE: "!"
config.COMMAND_PREFIX = "!"
return config