Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { emoji } from "./emoji";
const { TOKEN, DATABASE_URL, DATABASE_PASSWORD } = process.env;

export const Configuration: SoundyConfiguration = {
defaultPrefix: "!", // Default prefix for commands
defaultPrefix: "s!", // Default prefix for commands
defaultSearchPlatform: "spotify", // Default search platform for music commands
defaultVolume: 100, // Default volume for music playback
defaultVolume: 60, // Default volume level for music playback
defaultLocale: "en-US", // Default locale for the bot
lyricsLines: 10, // Number of lyrics lines to display
serverPort: 3000, // Port for the API server
lyricsLines: 11, // Number of lyrics lines to display
serverPort: 4000, // Port for the API server
info: {
banner: "https://i.ibb.co.com/z8c0SQK/bannersoundy-FHD.png", // Replace with actual banner URL
inviteLink:
Expand All @@ -19,8 +19,9 @@ export const Configuration: SoundyConfiguration = {
},
topgg: {
enabled: false,
webhookAuth: "xxxx", // Replace with actual webhook auth token
token: "xxxx", // Replace with actual Top.gg token
webhookAuth: "S6:<&ZhpQT}ZJ&coHZ4|;M7T3!V6OkoupD7Qz!##", // Replace with actual webhook auth token
token:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjExNjgzODUzNzEyOTQ0MjA5OTIiLCJib3QiOnRydWUsImlhdCI6MTczMjMzNDMwMX0.ZaliaLH24inHJERiHxfjXHzGKXSPj6sFhruFJSNwf-A", // Replace with actual Top.gg token
},
premium: {
enabled: false, // Enable or disable premium features
Expand All @@ -29,7 +30,7 @@ export const Configuration: SoundyConfiguration = {
filename: "commands.json", // Name of the cache file
size: 5, // Size of the cache
},
developersIds: ["885731228874051624", "123456789012345678"], // Replace with actual developer IDs
developersIds: ["885731228874051624", "169711695932030976"], // Replace with actual developer IDs
permissions: {
stagePermissions: ["MuteMembers"],
voicePermissions: ["ViewChannel", "Connect", "Speak"],
Expand All @@ -43,12 +44,18 @@ export const Configuration: SoundyConfiguration = {
warn: 0xffff00, // Color for warning responses
},
webhooks: {
nodeLog: "xxx", // Node logs
guildLog: "xxx", // Guild logs
commandLog: "xxx", // Command logs
voteLog: "xxx", // Vote logs
errorLog: "xxx", // Error logs
report: "xxx", // Bug or suggestion reports
nodeLog:
"https://discord.com/api/webhooks/1325160873311993876/MGqy3SJNJg_ZQx63r7SSldWOSlLHoVOF0ojuxF7OcnO7OK-uPmuWJnlmlJDikfQuVn95", // Node logs
guildLog:
"https://discord.com/api/webhooks/1326531769385619517/PLS9JJy6l1TaSTCfpW061pGMGAtxwQFuNEWFvtaw8w-ULKK5uYMCBesmfcMT7hlwxF0j", // Guild logs
commandLog:
"https://discord.com/api/webhooks/1325160679497400465/uthdw1T-R4DgsWY5jDpcfrdRQMkVSon4_heaGOb3uYh9kH5JNpNCFSWp604h-2xQimlU", // Command logs
voteLog:
"https://discord.com/api/webhooks/1260482354535989259/LE4VUln4eUaaE_pTzU8IkU1lFQS_mn24f2C8OpBosCVkWETTO1oFiDyIgfWnJ8BqTD4s", // Vote logs
errorLog:
"https://discord.com/api/webhooks/1325125857525629009/Y7CpDtdtj-u8IJUtY4uZQ4Gn0ORqDyWaqYBBtenVx9r6c1hBsWflYHPoA_EEsFEwgw-k", // Error logs
report:
"https://discord.com/api/webhooks/1351961646985379850/uUrrZm8bjhkT_g25qYCED_LPbTTlZBqj9wjYNhR1M9yGlNRlcNzizwtFbuN97GdFaZnj", // Bug or suggestion reports
},

emoji,
Expand Down
6 changes: 2 additions & 4 deletions src/config/nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ import type { LavalinkNodeOptions } from "lavalink-client";
export const nodes: LavalinkNodeOptions[] = [
{
id: "Tsukasa",
host: "localhost",
port: 3465,
host: "45.142.114.113",
port: 20005,
authorization: "TsukasaAlyaMahiru",
secure: false,
},

// add more nodes here if needed
];
Loading