mrmBot-Matrix/commands/play.js

12 lines
431 B
JavaScript
Raw Normal View History

const soundPlayer = require("../utils/soundplayer.js");
2019-09-13 20:02:41 +00:00
exports.run = async (message, args) => {
if (!args[0]) return `${message.author.mention}, you need to provide what you want to play!`;
soundPlayer.play(encodeURIComponent(args.join(" ").trim()), message, true);
2019-09-13 20:02:41 +00:00
};
exports.aliases = ["p"];
exports.category = 7;
exports.help = "Plays a song or adds it to the queue";
exports.requires = "sound";
exports.params = "[url]";