Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added an addon info slash-command #24

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 27 additions & 9 deletions src/main/java/org/meteordev/meteorbot/command/Commands.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,17 @@
import net.dv8tion.jda.internal.interactions.CommandDataImpl;
import org.jetbrains.annotations.NotNull;
import org.meteordev.meteorbot.MeteorBot;
import org.meteordev.meteorbot.command.commands.*;
import org.meteordev.meteorbot.command.commands.LinkCommand;
import org.meteordev.meteorbot.command.commands.StatsCommand;
import org.meteordev.meteorbot.command.commands.help.FaqCommand;
import org.meteordev.meteorbot.command.commands.help.InstallationCommand;
import org.meteordev.meteorbot.command.commands.help.LogsCommand;
import org.meteordev.meteorbot.command.commands.help.OldVersionCommand;
import org.meteordev.meteorbot.command.commands.moderation.BanCommand;
import org.meteordev.meteorbot.command.commands.moderation.CloseCommand;
import org.meteordev.meteorbot.command.commands.moderation.MuteCommand;
import org.meteordev.meteorbot.command.commands.moderation.UnmuteCommand;
import org.meteordev.meteorbot.command.commands.silly.*;

import java.util.ArrayList;
import java.util.HashMap;
Expand All @@ -23,19 +33,27 @@ public static void add(Command command) {

@Override
public void onReady(@NotNull ReadyEvent event) {
add(new CatCommand());
add(new MonkyCommand());
add(new StatsCommand());
if (MeteorBot.BACKEND_TOKEN != null) add(new LinkCommand());
add(new MuteCommand());
add(new UnmuteCommand());
add(new LogsCommand());
add(new FaqCommand());
add(new InstallationCommand());
add(new LogsCommand());
add(new OldVersionCommand());
add(new AddonCommand())

add(new BanCommand());
add(new CloseCommand());
add(new MuteCommand());
add(new UnmuteCommand());

add(new CapyCommand());
add(new PandaCommand());
add(new CatCommand());
add(new DogCommand());
add(new MonkyCommand());
add(new PandaCommand());

add(new StatsCommand());
if (MeteorBot.BACKEND_TOKEN != null) {
add(new LinkCommand());
}

List<CommandData> commandData = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package org.meteordev.meteorbot.command.commands;

import net.dv8tion.jda.api.entities.Member;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import net.dv8tion.jda.api.interactions.commands.OptionType;
import net.dv8tion.jda.api.interactions.commands.build.SlashCommandData;
import org.meteordev.meteorbot.command.Command;

public class AddonCommand extends Command {
private static final String message = "You can get addons from https://anticope.ml/addons? \n To install addons you place their jar file in your mods folder alongside meteor client. You can use multiple addons however they may have incompatibilities. \n What does this addon do? Ask the addon's devs not us, we dont make them. Have a problem with the addon? Go ask the addon's devs.";

public AddonCommand() {
super("addons", "to install addons");
}

@Override
public SlashCommandData build(SlashCommandData data) {
return data.addOption(OptionType.USER, "member", "The member to ping.", true);
}

@Override
public void run(SlashCommandInteractionEvent event) {
Member member = parseMember(event);
if (member == null) return;

event.reply("%s %s".formatted(member.getAsMention(), message)).queue();
}
}