Update to main

This commit is contained in:
Die Antwoord 2023-01-23 14:53:30 +02:00
parent d2db3e1479
commit 7e593cacfa
2 changed files with 23 additions and 9 deletions

View File

@ -1,18 +1,16 @@
{ {
"prefix": ",", "prefix": "YOUR_BOT_PREFIX_HERE",
"token": "BOT_TOKEN", "token": "YOUR_BOT_TOKEN_HERE",
"permissions": "8", "permissions": "YOUR_BOT_PERMISSIONS_HERE",
"application_id": " ", "application_id": "YOUR_APPLICATION_ID_HERE ",
"webhook": "https://discord.com/api/webhooks/GUILD_ID/WEBHOOK_ID",
"sync_commands_globally": true, "sync_commands_globally": true,
"owners": [ "owners": [
123456789010456789, 1234567890101112,
123456789010456789, 9876543211110233
123456789010456789
], ],
"TOMORROWIO_TOKEN": "WEATHER_API_TOKEN", "TOMORROWIO_TOKEN": "WEATHER_API_TOKEN",
"allowguilds": [GUILD_ID_ALLOWED], "allowguilds": [GUILD_ID_ALLOWED],
"guildmsgdisable": [GUILD_ID_DISALLOW_MESSAGES], "guildmsgdisable": [GUILD_ID_DISALLOW_MESSAGES],
"roles": [JION_ROLE_ID], "roles": [JOIN_ROLE_ID],
"welcome_mention": [ROLE_ID_ON_USER_JOIN] "welcome_mention": [ROLE_ID_ON_USER_JOIN]
} }

16
demo.config.json Normal file
View File

@ -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
}