Files
discordjs-verification-bot/config/config.js.example
T

31 lines
1.4 KiB
Plaintext

module.exports = {
"prefix": "!?",
"guilds": {
"1033940528317866105": { //guild id
"channelId": "1033941062101766245", //channel id where the command is allowed
'roleToAdd': '1033996796109795408', //verified role id
'firstRole': '1203243427081355264', //unverified role id
},
"1203447255491809351": {
"channelId": "1203448057723748382",
'roleToAdd': '1203448287894704178',
'firstRole': '1203448332144611328',
}
},
'captchaCount': '7',
'captchaTimeout': '120000', //in milliseconds (seconds multiplied by 1000)
'maxAttempts': '3', // max attemps to verify
'messages': {
//literally messages lmao
'toVerify': 'Please verify that you are not a robot.',
'success': 'You have been verified successfully.',
'fail': 'You have failed the captcha verification. Please try again.',
'wrongChannel': 'You can\'t use this command here.',
'alreadyVerified': 'You are already verified.',
'tookTooLong': 'You took too long to respond. Please try again.',
'unableToDM': 'I was unable to send you a DM. Please make sure "Allow Direct Message" for this guild is enabled.',
'maxAttemptsExceeded': 'You have run out of attempts!',
'cannotContinue': 'Sorry, you have been blacklisted within an abuse database and we cannot continue verification at this time.'
}
}