Add current bot readme

This commit is contained in:
Raven Scott
2024-06-15 03:12:38 -04:00
parent 150b69a2a2
commit 983d88002e
4 changed files with 219 additions and 5 deletions

View File

@ -1,7 +1,7 @@
export default {
handler: function(bot, args, message) {
// Specify the path to the file you want to send
const filePath = '/path/to/file.png'; // Replace with the actual file path
const filePath = '/Users/raven/chat/chatBot/commands/ping.js'; // Replace with the actual file path
const fileType = 'text/html'; // Specify the correct file type
// Send the file message using the bot instance

View File

@ -1,9 +1,9 @@
export default {
handler: function(bot, args, message) {
// Specify the path to the audio file you want to send
const audioFilePath = '/path/to/audio/file'; // Replace with the actual audio file path
const audioType = 'audio';
const audioFilePath = '/Users/raven/discord-linux.mp3'; // Replace with the actual audio file path
const audioType = 'audio';
// Send the audio message using the bot instance
bot.sendAudioMessage(audioFilePath, audioType);
}