Huge sound player overhaul using Lavalink, added boom, removed prunejuice, boat, and bus, re-encoded audio files with ffmpeg
This commit is contained in:
parent
56faea8d59
commit
0cc80da8b6
41 changed files with 107 additions and 56 deletions
|
@ -1,9 +0,0 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/boat.opus", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["tape", "flextape", "phil", "philswift"];
|
||||
exports.category = 6;
|
||||
exports.help = "Plays the Flex Tape boat sound effect";
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/boi.opus", message);
|
||||
return soundPlayer.play("./assets/audio/boi.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["boy", "neutron", "hugh"];
|
||||
|
|
9
commands/boom.js
Normal file
9
commands/boom.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return soundPlayer.play("./assets/audio/boom.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["thud", "vine"];
|
||||
exports.category = 6;
|
||||
exports.help = "Plays the Vine boom sound effect";
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/bruh.opus", message);
|
||||
return soundPlayer.play("./assets/audio/bruh.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["bro"];
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/bus.opus", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["noyelling", "busyell"];
|
||||
exports.category = 6;
|
||||
exports.help = "Plays the \"no yelling on the bus\" sound effect";
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/explosion.opus", message);
|
||||
return soundPlayer.play("./assets/audio/explosion.ogg", message);
|
||||
};
|
||||
|
||||
exports.category = 6;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/ping.opus", message);
|
||||
return soundPlayer.play("./assets/audio/ping.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["notification", "notif"];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/fart.opus", message);
|
||||
return soundPlayer.play("./assets/audio/fart.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["toot"];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/fbi.opus", message);
|
||||
return soundPlayer.play("./assets/audio/fbi.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["openup"];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/mail.opus", message);
|
||||
return soundPlayer.play("./assets/audio/mail.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["yougotmail", "youvegotmail", "aol"];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/oof.opus", message);
|
||||
return soundPlayer.play("./assets/audio/oof.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["roblox", "commitdie"];
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/prunejuice.opus", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["juice", "grandma"];
|
||||
exports.category = 6;
|
||||
exports.help = "Plays the \"Drink yo prune juice\" sound effect";
|
|
@ -1,7 +1,7 @@
|
|||
const playSound = require("../utils/soundplayer.js");
|
||||
const soundPlayer = require("../utils/soundplayer.js");
|
||||
|
||||
exports.run = async (message) => {
|
||||
return playSound("./assets/audio/winxp.opus", message);
|
||||
return soundPlayer.play("./assets/audio/winxp.ogg", message);
|
||||
};
|
||||
|
||||
exports.aliases = ["windows", "xp"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue