Search in sources :

Example 21 with MessageEmbed

use of net.dv8tion.jda.core.entities.MessageEmbed in project MantaroBot by Mantaro.

the class OsuStatsCmd method user.

private static MessageEmbed user(String content) {
    MessageEmbed finalMessage;
    try {
        long start = System.currentTimeMillis();
        String beheaded1 = content.replace("user ", "");
        String[] args = beheaded1.split(" ");
        map.put("m", 0);
        User osuClientUser = osuClient.getUser(args[0], map);
        //For accuracy
        DecimalFormat dfa = new DecimalFormat("####0.00");
        //For everything else
        DecimalFormat df = new DecimalFormat("####0");
        long end = System.currentTimeMillis() - start;
        EmbedBuilder builder = new EmbedBuilder();
        builder.setAuthor("osu! statistics for " + osuClientUser.getUsername(), "https://osu.ppy.sh/" + osuClientUser.getUserID(), "https://a.ppy.sh/" + osuClientUser.getUserID()).setColor(Color.GRAY).addField("Rank", "#" + df.format(osuClientUser.getPPRank()), true).addField(":flag_" + osuClientUser.getCountry().toLowerCase() + ": Country Rank", "#" + df.format(osuClientUser.getPPCountryRank()), true).addField("PP", df.format(osuClientUser.getPPRaw()) + "pp", true).addField("Accuracy", dfa.format(osuClientUser.getAccuracy()) + "%", true).addField("Level", df.format(osuClientUser.getLevel()), true).addField("Ranked Score", df.format(osuClientUser.getRankedScore()), true).addField("SS", df.format(osuClientUser.getCountRankSS()), true).addField("S", df.format(osuClientUser.getCountRankS()), true).addField("A", df.format(osuClientUser.getCountRankA()), true).setFooter("Response time: " + end + "ms.", null);
        finalMessage = builder.build();
    } catch (Exception e) {
        EmbedBuilder builder = new EmbedBuilder();
        builder.setTitle("Error.", null).setColor(Color.RED).addField("Description", "Error retrieving results or no results found. (" + e.getMessage() + ")", false);
        finalMessage = builder.build();
    }
    return finalMessage;
}
Also used : EmbedBuilder(net.dv8tion.jda.core.EmbedBuilder) MessageEmbed(net.dv8tion.jda.core.entities.MessageEmbed) User(com.osu.api.ciyfhx.User) DecimalFormat(java.text.DecimalFormat) JSONException(org.json.JSONException)

Example 22 with MessageEmbed

use of net.dv8tion.jda.core.entities.MessageEmbed in project MantaroBot by Mantaro.

the class MoneyCmds method gamble.

@Command
public static void gamble(CommandRegistry cr) {
    RateLimiter rateLimiter = new RateLimiter(TimeUnit.SECONDS, 15);
    Random r = new Random();
    cr.register("gamble", new SimpleCommand(Category.CURRENCY) {

        @Override
        public void call(GuildMessageReceivedEvent event, String content, String[] args) {
            String id = event.getAuthor().getId();
            Player player = MantaroData.db().getPlayer(event.getMember());
            if (!rateLimiter.process(id)) {
                event.getChannel().sendMessage(EmoteReference.STOPWATCH + "Halt! You're gambling so fast that I can't print enough money!").queue();
                return;
            }
            if (player.getMoney() <= 0) {
                event.getChannel().sendMessage(EmoteReference.ERROR2 + "You're broke. Search for some credits first!").queue();
                return;
            }
            if (player.getMoney() > (long) (Integer.MAX_VALUE) * 3) {
                event.getChannel().sendMessage(EmoteReference.ERROR2 + "You have too much money! Maybe transfer or buy items?").queue();
                return;
            }
            double multiplier;
            long i;
            int luck;
            try {
                switch(content) {
                    case "all":
                    case "everything":
                        i = player.getMoney();
                        multiplier = 1.4d + (r.nextInt(1500) / 1000d);
                        luck = 30 + (int) (multiplier * 10) + r.nextInt(20);
                        break;
                    case "half":
                        i = player.getMoney() == 1 ? 1 : player.getMoney() / 2;
                        multiplier = 1.2d + (r.nextInt(1500) / 1000d);
                        luck = 20 + (int) (multiplier * 15) + r.nextInt(20);
                        break;
                    case "quarter":
                        i = player.getMoney() == 1 ? 1 : player.getMoney() / 4;
                        multiplier = 1.1d + (r.nextInt(1100) / 1000d);
                        luck = 25 + (int) (multiplier * 10) + r.nextInt(18);
                        break;
                    default:
                        i = Long.parseLong(content);
                        if (i > player.getMoney() || i < 0)
                            throw new UnsupportedOperationException();
                        multiplier = 1.1d + (i / player.getMoney() * r.nextInt(1300) / 1000d);
                        luck = 15 + (int) (multiplier * 15) + r.nextInt(10);
                        break;
                }
            } catch (NumberFormatException e) {
                event.getChannel().sendMessage(EmoteReference.ERROR2 + "Please type a valid number equal or less than your credits or" + " `all` to gamble all your credits.").queue();
                return;
            } catch (UnsupportedOperationException e) {
                event.getChannel().sendMessage(EmoteReference.ERROR2 + "Please type a value within your credits amount.").queue();
                return;
            }
            User user = event.getAuthor();
            long gains = (long) (i * multiplier);
            gains = Math.round(gains * 0.55);
            final int finalLuck = luck;
            final long finalGains = gains;
            if (i >= Integer.MAX_VALUE / 4) {
                event.getChannel().sendMessage(EmoteReference.WARNING + "You're about to bet **" + i + "** " + "credits (which seems to be a lot). Are you sure? Type **yes** to continue and **no** otherwise.").queue();
                InteractiveOperations.create(event.getChannel(), "Gambling", (int) TimeUnit.SECONDS.toMillis(30), OptionalInt.empty(), new InteractiveOperation() {

                    @Override
                    public boolean run(GuildMessageReceivedEvent e) {
                        if (e.getAuthor().getId().equals(user.getId())) {
                            if (e.getMessage().getContent().equalsIgnoreCase("yes")) {
                                proceedGamble(event, player, finalLuck, random, i, finalGains);
                                return true;
                            } else if (e.getMessage().getContent().equalsIgnoreCase("no")) {
                                e.getChannel().sendMessage(EmoteReference.ZAP + "Cancelled bet.").queue();
                                return true;
                            }
                        }
                        return false;
                    }

                    @Override
                    public void onExpire() {
                        event.getChannel().sendMessage(EmoteReference.ERROR + "Time to complete the operation has ran out.").queue();
                    }
                });
                return;
            }
            proceedGamble(event, player, luck, random, i, gains);
        }

        @Override
        public MessageEmbed help(GuildMessageReceivedEvent event) {
            return helpEmbed(event, "Gamble command").setDescription("Gambles your money").addField("Usage", "~>gamble <all/half/quarter> or ~>gamble <amount>", false).build();
        }
    });
}
Also used : InteractiveOperation(net.kodehawa.mantarobot.core.listeners.operations.InteractiveOperation) Player(net.kodehawa.mantarobot.data.entities.Player) User(net.dv8tion.jda.core.entities.User) MessageEmbed(net.dv8tion.jda.core.entities.MessageEmbed) RateLimiter(net.kodehawa.mantarobot.commands.currency.RateLimiter) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) GuildMessageReceivedEvent(net.dv8tion.jda.core.events.message.guild.GuildMessageReceivedEvent) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Command(net.kodehawa.mantarobot.modules.Command)

Example 23 with MessageEmbed

use of net.dv8tion.jda.core.entities.MessageEmbed in project MantaroBot by Mantaro.

the class MoneyCmds method daily.

@Command
public static void daily(CommandRegistry cr) {
    RateLimiter rateLimiter = new RateLimiter(TimeUnit.HOURS, 24);
    Random r = new Random();
    cr.register("daily", new SimpleCommand(Category.CURRENCY) {

        @Override
        public void call(GuildMessageReceivedEvent event, String content, String[] args) {
            String id = event.getAuthor().getId();
            long money = 150L;
            User mentionedUser = null;
            try {
                mentionedUser = event.getMessage().getMentionedUsers().get(0);
            } catch (IndexOutOfBoundsException ignored) {
            }
            Player player;
            if (!rateLimiter.process(id)) {
                event.getChannel().sendMessage(EmoteReference.STOPWATCH + "Halt! You can only do this once every 24 hours.\n**You'll be able to use this command again in " + Utils.getVerboseTime(rateLimiter.tryAgainIn(id)) + ".**").queue();
                return;
            }
            if (mentionedUser != null && !mentionedUser.getId().equals(event.getAuthor().getId())) {
                money = money + r.nextInt(2);
                player = MantaroData.db().getPlayer(event.getGuild().getMember(mentionedUser));
                if (player.getInventory().containsItem(Items.COMPANION))
                    money = Math.round(money + (money * 0.10));
                if (mentionedUser.getId().equals(player.getData().getMarriedWith()) && player.getData().getMarriedSince() != null && Long.parseLong(player.getData().anniversary()) - player.getData().getMarriedSince() > TimeUnit.DAYS.toMillis(1)) {
                    money = money + r.nextInt(20);
                    if (player.getInventory().containsItem(Items.RING_2)) {
                        money = money + r.nextInt(10);
                    }
                }
                player.addMoney(money);
                player.save();
                event.getChannel().sendMessage(EmoteReference.CORRECT + "I gave your **$" + money + "** daily credits to " + mentionedUser.getName()).queue();
                return;
            }
            player = MantaroData.db().getPlayer(event.getMember());
            player.addMoney(money);
            player.save();
            event.getChannel().sendMessage(EmoteReference.CORRECT + "You got **$" + money + "** daily credits.").queue();
        }

        @Override
        public MessageEmbed help(GuildMessageReceivedEvent event) {
            return helpEmbed(event, "Daily command").setDescription("**Gives you $150 credits per day (or between 150 and 180 if you transfer it to another person)**.").build();
        }
    });
}
Also used : Player(net.kodehawa.mantarobot.data.entities.Player) User(net.dv8tion.jda.core.entities.User) MessageEmbed(net.dv8tion.jda.core.entities.MessageEmbed) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) RateLimiter(net.kodehawa.mantarobot.commands.currency.RateLimiter) GuildMessageReceivedEvent(net.dv8tion.jda.core.events.message.guild.GuildMessageReceivedEvent) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Command(net.kodehawa.mantarobot.modules.Command)

Example 24 with MessageEmbed

use of net.dv8tion.jda.core.entities.MessageEmbed in project MantaroBot by Mantaro.

the class MiscCmds method eightBall.

@Command
public static void eightBall(CommandRegistry cr) {
    cr.register("8ball", new SimpleCommand(Category.MISC) {

        @Override
        protected void call(GuildMessageReceivedEvent event, String content, String[] args) {
            if (content.isEmpty()) {
                onError(event);
                return;
            }
            String textEncoded;
            String answer;
            try {
                textEncoded = URLEncoder.encode(content, "UTF-8");
                answer = Unirest.get(String.format("https://8ball.delegator.com/magic/JSON/%1s", textEncoded)).asJson().getBody().getObject().getJSONObject("magic").getString("answer");
            } catch (Exception exception) {
                event.getChannel().sendMessage(EmoteReference.ERROR + "I ran into an error while fetching 8ball results. My owners " + "have been notified and will resolve this soon.").queue();
                log.warn("Error while processing answer", exception);
                return;
            }
            event.getChannel().sendMessage("💬 " + answer + ".").queue();
        }

        @Override
        public MessageEmbed help(GuildMessageReceivedEvent event) {
            return helpEmbed(event, "8ball").setDescription("**Retrieves an answer from the almighty 8ball.**").addField("Usage", "`~>8ball <question>` - **Retrieves an answer from 8ball based on the question or sentence provided.**", false).build();
        }
    });
    cr.registerAlias("8ball", "8b");
}
Also used : MessageEmbed(net.dv8tion.jda.core.entities.MessageEmbed) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) GuildMessageReceivedEvent(net.dv8tion.jda.core.events.message.guild.GuildMessageReceivedEvent) PermissionException(net.dv8tion.jda.core.exceptions.PermissionException) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Command(net.kodehawa.mantarobot.modules.Command)

Example 25 with MessageEmbed

use of net.dv8tion.jda.core.entities.MessageEmbed in project MantaroBot by Mantaro.

the class FunCmds method coinflip.

@Command
public static void coinflip(CommandRegistry cr) {
    cr.register("coinflip", new SimpleCommand(Category.FUN) {

        @Override
        protected void call(GuildMessageReceivedEvent event, String content, String[] args) {
            int times;
            if (args.length == 0 || content.length() == 0)
                times = 1;
            else {
                try {
                    times = Integer.parseInt(args[0]);
                    if (times > 1000) {
                        event.getChannel().sendMessage(EmoteReference.ERROR + "Whoah there! The limit is 1,000 coinflips").queue();
                        return;
                    }
                } catch (NumberFormatException nfe) {
                    event.getChannel().sendMessage(EmoteReference.ERROR + "You need to specify an Integer for the amount of " + "repetitions").queue();
                    return;
                }
            }
            final int[] heads = { 0 };
            final int[] tails = { 0 };
            doTimes(times, () -> {
                if (new Random().nextBoolean())
                    heads[0]++;
                else
                    tails[0]++;
            });
            String flips = times == 1 ? "time" : "times";
            event.getChannel().sendMessage(EmoteReference.PENNY + " Your result from **" + times + "** " + flips + " yielded " + "**" + heads[0] + "** heads and **" + tails[0] + "** tails").queue();
        }

        @Override
        public MessageEmbed help(GuildMessageReceivedEvent event) {
            return helpEmbed(event, "Coinflip command").setDescription("**Flips a coin with a defined number of repetitions**").addField("Usage", "`~>coinflip <number of times>` - **Flips a coin x number of times**", false).build();
        }
    });
}
Also used : MessageEmbed(net.dv8tion.jda.core.entities.MessageEmbed) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Random(java.util.Random) GuildMessageReceivedEvent(net.dv8tion.jda.core.events.message.guild.GuildMessageReceivedEvent) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Command(net.kodehawa.mantarobot.modules.Command)

Aggregations

MessageEmbed (net.dv8tion.jda.core.entities.MessageEmbed)26 GuildMessageReceivedEvent (net.dv8tion.jda.core.events.message.guild.GuildMessageReceivedEvent)22 Command (net.kodehawa.mantarobot.modules.Command)22 SimpleCommand (net.kodehawa.mantarobot.modules.commands.SimpleCommand)22 EmbedBuilder (net.dv8tion.jda.core.EmbedBuilder)12 MantaroData (net.kodehawa.mantarobot.data.MantaroData)8 CommandRegistry (net.kodehawa.mantarobot.modules.CommandRegistry)8 Module (net.kodehawa.mantarobot.modules.Module)8 Category (net.kodehawa.mantarobot.modules.commands.base.Category)8 EmoteReference (net.kodehawa.mantarobot.utils.commands.EmoteReference)8 Player (net.kodehawa.mantarobot.data.entities.Player)7 Color (java.awt.Color)6 TimeUnit (java.util.concurrent.TimeUnit)5 Slf4j (lombok.extern.slf4j.Slf4j)5 Utils (net.kodehawa.mantarobot.utils.Utils)5 Collectors (java.util.stream.Collectors)4 User (net.dv8tion.jda.core.entities.User)4 RateLimiter (net.kodehawa.mantarobot.commands.currency.RateLimiter)4 TextChannelGround (net.kodehawa.mantarobot.commands.currency.TextChannelGround)4 DBGuild (net.kodehawa.mantarobot.data.entities.DBGuild)4