|
| 1 | +package dev.hause.squeakerbot.command.commands; |
| 2 | + |
| 3 | +import java.util.Random; |
| 4 | +import dev.hause.squeakerbot.command.Command; |
| 5 | +import dev.hause.squeakerbot.util.ChatUtil; |
| 6 | + |
| 7 | +@Command.Register(name = "TallyHall", aliases = {"Based", "Music", "Songs", "TheHall", "Hall", "Tally"}) |
| 8 | +public class TallyHall extends Command { |
| 9 | + |
| 10 | + private static String[] links = {"https://www.youtube.com/watch?v=ipYafcHd0jA", "https://www.youtube.com/watch?v=I8sUC-dsW8A", |
| 11 | + "https://www.youtube.com/watch?v=A-ZUo62N7Kc", "https://www.youtube.com/watch?v=-krA-ubCQqg", "https://www.youtube.com/watch?v=TIt4i8AmryQ", |
| 12 | + "https://www.youtube.com/watch?v=HnwemKW9H3s", "https://www.youtube.com/watch?v=xLirITfSCVY", "https://www.youtube.com/watch?v=Q-4IXcKkK1U", |
| 13 | + "https://www.youtube.com/watch?v=nHjaNDGgYEA", "https://www.youtube.com/watch?v=KrXJu-6ZcAQ", "https://www.youtube.com/watch?v=OFi8748c9Ew", |
| 14 | + "https://www.youtube.com/watch?v=1RliQKR6jXM", "https://www.youtube.com/watch?v=CgcTf6JYxsE", "https://www.youtube.com/watch?v=IawfoCuBV3c", |
| 15 | + "https://www.youtube.com/watch?v=OjGzOJ5IiSM", "https://www.youtube.com/watch?v=tRnMWzz44gA", "https://www.youtube.com/watch?v=5_QwMRE-BKc", |
| 16 | + "https://www.youtube.com/watch?v=7Q0ge00LmwM", "https://www.youtube.com/watch?v=rfUeWe7u364"}; |
| 17 | + |
| 18 | + private static String[] applause = {"You have great music taste: ", "Here's your vibes: ", "Enjoy!: ", "Listen, you'll love it: ", |
| 19 | + "Your tunes, sir: ", "Tally Hall!: ", "Go that extra mile: ", "Depression is gone: ", "A gem: ", "This one's a banger", |
| 20 | + "Poggers song: ", "Le tunes have arrived: ", "Amazing choice: ", "Have a great day friend: ", "The Tally Hall: ", "Epic vibe: ", |
| 21 | + "A cool band: ", "Mega based tune: ", "Great choice!: "}; |
| 22 | + |
| 23 | + @Override |
| 24 | + public void onRun() { |
| 25 | + Random random = new Random(); |
| 26 | + ChatUtil.sendChatMessage((applause[random.nextInt(18)]) + (links[random.nextInt(18)])); |
| 27 | + } |
| 28 | + |
| 29 | +} |
0 commit comments