Search in sources :

Example 1 with CommandException

use of uwu.narumi.tama.command.CommandException in project TamaBot by Loli-Cafe.

the class BlowJobCommand method compose.

@Override
public void compose(SlashCommandInteractionEvent event) {
    checkContext(event.getMember(), event.getTextChannel());
    OptionMapping optionMapping = event.getOption("user");
    if (optionMapping == null)
        throw new CommandException(getUsage());
    event.replyEmbeds(execute(String.format("%s give blowjob to %s", event.getUser().getAsMention(), optionMapping.getAsUser().getAsMention()))).queue();
}
Also used : OptionMapping(net.dv8tion.jda.api.interactions.commands.OptionMapping) CommandException(uwu.narumi.tama.command.CommandException)

Example 2 with CommandException

use of uwu.narumi.tama.command.CommandException in project TamaBot by Loli-Cafe.

the class BrainFuckCommand method compose.

@Override
public void compose(SlashCommandInteractionEvent event) {
    checkContext(event.getMember(), event.getTextChannel());
    OptionMapping optionMapping = event.getOption("user");
    if (optionMapping == null)
        throw new CommandException(getUsage());
    event.replyEmbeds(execute(String.format("%s brain fucked %s", event.getUser().getAsMention(), optionMapping.getAsUser().getAsMention()))).queue();
}
Also used : OptionMapping(net.dv8tion.jda.api.interactions.commands.OptionMapping) CommandException(uwu.narumi.tama.command.CommandException)

Example 3 with CommandException

use of uwu.narumi.tama.command.CommandException in project TamaBot by Loli-Cafe.

the class BrandCommand method compose.

@Override
public void compose(MessageReceivedEvent event, String... args) {
    checkContext(event.getMember(), event.getTextChannel());
    if (!DiscordHelper.hasMention(event, Message.MentionType.USER))
        throw new CommandException(getUsage());
    event.getTextChannel().sendMessageEmbeds(execute(String.format("%s branded %s", event.getAuthor().getAsMention(), DiscordHelper.getMention(event, Message.MentionType.USER).getAsMention()))).queue();
}
Also used : CommandException(uwu.narumi.tama.command.CommandException)

Example 4 with CommandException

use of uwu.narumi.tama.command.CommandException in project TamaBot by Loli-Cafe.

the class BrandCommand method compose.

@Override
public void compose(SlashCommandInteractionEvent event) {
    checkContext(event.getMember(), event.getTextChannel());
    OptionMapping optionMapping = event.getOption("user");
    if (optionMapping == null)
        throw new CommandException(getUsage());
    event.replyEmbeds(execute(String.format("%s branded %s", event.getUser().getAsMention(), optionMapping.getAsUser().getAsMention()))).queue();
}
Also used : OptionMapping(net.dv8tion.jda.api.interactions.commands.OptionMapping) CommandException(uwu.narumi.tama.command.CommandException)

Example 5 with CommandException

use of uwu.narumi.tama.command.CommandException in project TamaBot by Loli-Cafe.

the class CuntbustCommand method compose.

@Override
public void compose(MessageReceivedEvent event, String... args) {
    checkContext(event.getMember(), event.getTextChannel());
    if (!DiscordHelper.hasMention(event, Message.MentionType.USER))
        throw new CommandException(getUsage());
    event.getTextChannel().sendMessageEmbeds(execute(String.format("%s cuntbusted %s", event.getAuthor().getAsMention(), DiscordHelper.getMention(event, Message.MentionType.USER).getAsMention()))).queue();
}
Also used : CommandException(uwu.narumi.tama.command.CommandException)

Aggregations

CommandException (uwu.narumi.tama.command.CommandException)86 OptionMapping (net.dv8tion.jda.api.interactions.commands.OptionMapping)44 TextChannel (net.dv8tion.jda.api.entities.TextChannel)10 Role (net.dv8tion.jda.api.entities.Role)2