Answers for "8ball discord.js"

0

8ball discord.js

const config = require("../../config")
const { ownerID } = require('../../owner.json') 
const ball = require("8ball.js");

// Creating an array with responses.
const Responses = ["Response1", "Response2", "Response3", "Response4"];



module.exports = {
    config: {
      name: "8Ball",
      description: "Send some wired stuff",
      aliases: ['8ball']
    },
    run: async(bot, message, args) => {{
        message.channel.send(Responses[Math.floor(Math.random() * Responses.length)]);
    }
}};
Posted by: Guest on September-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language