diff --git a/chatBot/commands/ping.js b/chatBot/commands/ping.js index f9e0044..8ba0a84 100644 --- a/chatBot/commands/ping.js +++ b/chatBot/commands/ping.js @@ -1,7 +1,7 @@ export default { handler: function(bot, args, message) { // Specify the path to the file you want to send - const filePath = '/Users/raven/chat/chatBot/commands/ping.js'; // Replace with the actual file path + const filePath = '/to/file/path.js'; // Replace with the actual file path const fileType = 'text/html'; // Specify the correct file type // Send the file message using the bot instance diff --git a/chatBot/commands/test-audio.js b/chatBot/commands/test-audio.js index bac2b48..935187c 100644 --- a/chatBot/commands/test-audio.js +++ b/chatBot/commands/test-audio.js @@ -1,9 +1,9 @@ export default { handler: function(bot, args, message) { // Specify the path to the audio file you want to send - const audioFilePath = '/Users/raven/discord-linux.mp3'; // Replace with the actual audio file path + const audioFilePath = '/to/file/path.mp3'; // Replace with the actual audio file path const audioType = 'audio'; - + // Send the audio message using the bot instance bot.sendAudioMessage(audioFilePath, audioType); }