Recent content by MJDawson

  • After careful consideration and due to limited usage, we’ve made the decision to discontinue the PaperMC forums. Moving forward, we recommend using Hangar for plugin uploads, and for all other community discussions and support, please join us on Discord.
  1. MJDawson

    Solved Get the title of an advancement

    Oh right. I'm sending using to send through a discord bot This was the rest of my code in my event: EmbedBuilder embed = new EmbedBuilder(); embed.setDescription(advancementName); embed.setColor(Color.orange); jda.getTextChannelById(channelId)...
  2. MJDawson

    Solved Get the title of an advancement

    I want to get the title like, bullseye or Monster Hunter.
  3. MJDawson

    Solved Get the title of an advancement

    Hi, So I'm trying to get the title of of the enchantment. Code: public void onPlayerAchievement(PlayerAdvancementDoneEvent event) throws Exception{ String advancementName = event.getAdvancement().toString(); //Do some things with advancementName... } But...