diff --git a/.env.example b/.env.example index 0179419..7fbf4f5 100644 --- a/.env.example +++ b/.env.example @@ -1,12 +1,15 @@ @@ -1,23 +0,0 @@ +# Bot Token [Required] BOT_TOKEN= +# Mongo Database Connection String [Required] MONGO_CONNECTION= # Webhooks [Optional] ERROR_LOGS= JOIN_LEAVE_LOGS= +# Dashboard [Required for dashboard] BOT_SECRET= SESSION_PASSWORD= diff --git a/.gitbook.yaml b/.gitbook.yaml deleted file mode 100644 index e66b6e8..0000000 --- a/.gitbook.yaml +++ /dev/null @@ -1,4 +0,0 @@ -root: ./docs/ -structure: - readme: ../README.md - summary: SUMMARY.md diff --git a/.prettierrc.json b/.prettierrc.json index 43763f0..e1f258c 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -7,5 +7,6 @@ "printWidth": 120, "bracketSpacing": true, "arrowParens": "always", - "endOfLine": "crlf" + "endOfLine": "lf" } + diff --git a/config.js b/config.js index d60b6b9..8f140b4 100644 --- a/config.js +++ b/config.js @@ -1,5 +1,5 @@ module.exports = { - OWNER_IDS: ["334307216926703616","1010905208391487548"], // Bot owner ID's + OWNER_IDS: ["334307216926703616", "1010905208391487548"], // Bot owner ID's SUPPORT_SERVER: "https://kiera-bot.serenetia.com", // Your bot support server PREFIX_COMMANDS: { ENABLED: true, // Enable/Disable prefix commands @@ -30,24 +30,24 @@ module.exports = { // PLUGINS AUTOMOD: { - ENABLED: false, + ENABLED: true, LOG_EMBED: "#36393F", DM_EMBED: "#36393F", }, DASHBOARD: { enabled: true, // enable or disable dashboard - baseURL: "http://localhost:8080", // base url - failureURL: "http://localhost:8080", // failure redirect url - port: "8080", // port to run the bot on + baseURL: "https://dash-kiera.serenetia.com", // base url + failureURL: "https://serenetia.com/void/error/", // failure redirect url + port: "3555", // port to run the bot on }, ECONOMY: { - ENABLED: false, + ENABLED: true, CURRENCY: "₪", - DAILY_COINS: 100, // coins to be received by daily command - MIN_BEG_AMOUNT: 100, // minimum coins to be received when beg command is used - MAX_BEG_AMOUNT: 2500, // maximum coins to be received when beg command is used + DAILY_COINS: 1000, // coins to be received by daily command + MIN_BEG_AMOUNT: 1000, // minimum coins to be received when beg command is used + MAX_BEG_AMOUNT: 25000, // maximum coins to be received when beg command is used }, MUSIC: { @@ -58,34 +58,51 @@ module.exports = { // Add any number of lavalink nodes here // Refer to https://github.com/freyacodes/Lavalink to host your own lavalink server LAVALINK_NODES: [ + /*{ + host: "lavalink.serenetia.com", + port: 443, + password: "amanechan", + secure: true, + },*/ + { + host: "lavalink-sg.serenetia.com", + port: 443, + password: "amanechan", + secure: true, + }, { host: "103.125.38.143", port: 3556, password: "amanechan", - id: "Indonesia Node", + secure: false, + }, + { + host: "194.233.92.52", + port: 3556, + password: "amanechan", secure: false, }, ], }, GIVEAWAYS: { - ENABLED: false, + ENABLED: true, REACTION: "🎁", START_EMBED: "#FF468A", END_EMBED: "#FF468A", }, IMAGE: { - ENABLED: false, + ENABLED: true, BASE_API: "https://strangeapi.hostz.me/api", }, INVITE: { - ENABLED: false, + ENABLED: true, }, MODERATION: { - ENABLED: false, + ENABLED: true, EMBED_COLORS: { TIMEOUT: "#102027", UNTIMEOUT: "#4B636E", @@ -110,13 +127,13 @@ module.exports = { }, STATS: { - ENABLED: false, + ENABLED: true, XP_COOLDOWN: 5, // Cooldown in seconds between messages DEFAULT_LVL_UP_MSG: "{member:tag}, You just advanced to **Level {level}**", }, SUGGESTIONS: { - ENABLED: false, // Should the suggestion system be enabled + ENABLED: true, // Should the suggestion system be enabled EMOJI: { UP_VOTE: "⬆️", DOWN_VOTE: "⬇️", @@ -127,7 +144,7 @@ module.exports = { }, TICKET: { - ENABLED: false, + ENABLED: true, CREATE_EMBED: "#068ADD", CLOSE_EMBED: "#068ADD", }, diff --git a/dashboard/views/includes/footer.ejs b/dashboard/views/includes/footer.ejs index 951df46..ad6fed4 100644 --- a/dashboard/views/includes/footer.ejs +++ b/dashboard/views/includes/footer.ejs @@ -1,6 +1,6 @@