From 4ed7df800391dc7f85a47e24b74ac39805049633 Mon Sep 17 00:00:00 2001 From: Jonas Leder Date: Mon, 27 Jul 2020 14:55:44 +0200 Subject: [PATCH] added example config --- config-example.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config-example.py diff --git a/config-example.py b/config-example.py new file mode 100644 index 0000000..b818537 --- /dev/null +++ b/config-example.py @@ -0,0 +1,22 @@ +prefix = "!" #the prefix for the bot commands +token = "" #the login token of the bot + +sqlServer = "" +sqlUser = "" +sqlPassword = "" +sqlDatabase = "" + +roleMap = { +"tilera" : "tilera", +"Server Administration" : "admin", +"Anvilcraft Team" : "team", +"Moderator" : "mod", +"Mod Dev" : "dev", +"Modpack Creator" : "modpack", +"YOUTUBER" : "youtube", +"Streamer" : "stream" +} + +ignoreRoles = [ + "Bot" +] \ No newline at end of file