diff --git a/config.json b/config.json index 26775d3..4c9b213 100644 --- a/config.json +++ b/config.json @@ -1,18 +1,16 @@ { - "prefix": ",", - "token": "BOT_TOKEN", - "permissions": "8", - "application_id": " ", - "webhook": "https://discord.com/api/webhooks/GUILD_ID/WEBHOOK_ID", + "prefix": "YOUR_BOT_PREFIX_HERE", + "token": "YOUR_BOT_TOKEN_HERE", + "permissions": "YOUR_BOT_PERMISSIONS_HERE", + "application_id": "YOUR_APPLICATION_ID_HERE ", "sync_commands_globally": true, "owners": [ - 123456789010456789, - 123456789010456789, - 123456789010456789 + 1234567890101112, + 9876543211110233 ], "TOMORROWIO_TOKEN": "WEATHER_API_TOKEN", "allowguilds": [GUILD_ID_ALLOWED], "guildmsgdisable": [GUILD_ID_DISALLOW_MESSAGES], - "roles": [JION_ROLE_ID], + "roles": [JOIN_ROLE_ID], "welcome_mention": [ROLE_ID_ON_USER_JOIN] } \ No newline at end of file diff --git a/demo.config.json b/demo.config.json new file mode 100644 index 0000000..ef6440d --- /dev/null +++ b/demo.config.json @@ -0,0 +1,16 @@ +{ + "prefix": "YOUR_BOT_PREFIX_HERE", // '.' or '!' Whatever you specify + "token": "YOUR_BOT_TOKEN_HERE", // Bot Token here + "permissions": "YOUR_BOT_PERMISSIONS_HERE", // Example '8' or '1024' https://discordapi.com/permissions.html + "application_id": "YOUR_APPLICATION_ID_HERE ", // Bot ID + "sync_commands_globally": true, + "owners": [ + 1234567890101112, + 9876543211110233 + ], // Owners ID here 'can be more than one separated with ',' + "TOMORROWIO_TOKEN": "WEATHER_API_TOKEN", //http://api.timezonedb.com/v2.1/get-time-zone + "allowguilds": [GUILD_ID_ALLOWED], //GUILD Allowed to use the bot + "guildmsgdisable": [GUILD_ID_DISALLOW_MESSAGES], //GUILDS to where the bot should not respond to + "roles": [JOIN_ROLE_ID], //ROLES that member gain at GUILD_JOIN + "welcome_mention": [ROLE_ID_ON_USER_JOIN] // ROLE_ID that will be mentioned as a member join the server +} \ No newline at end of file