Recent content by Slav ebb

  • 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. S

    Question How to get started on NMS?

    Hii, so i was wondering on how to set up NMS? I'm at this stage where i can't really post-pone getting started with NMS (as some things are just impossible without it. I am using MAVEN, 1.21 build 130 Please explain how it's done, im too braindead to understand what the documentations say.
  2. S

    How to have two separate colors in the same text component?

    I actually looked into it and realised that i dont have # in the hex XDD😭🙏
  3. S

    How to have two separate colors in the same text component?

    Hi, i'd like to have two separate colors in the same text component, i tried to do it in the code below, but it doesn't seem to work. StrTex =Component.text("ОСТЕРЕГАЙТЕСЬ МОЛНИЙ!") .color(TextColor.fromHexString("FFFFFF")); nameTex=Component.text("⚡ ГРОЗА!")...
  4. S

    Question My paper plugin has remapping issues when doing /reload confirm

    Very dissapointed in myself (I LITURALY HAD THE FOLDER OPEN, THAT'S IT😭😭😭)
  5. S

    Question My paper plugin has remapping issues when doing /reload confirm

    Hello everyone, i was wondering if anyone had this issue before, and if there is something i can do about it. Basicaly, if i re-compile my plugin with any changes in the code (if i dont change anything, this doesn't happen) in Inteliji Idea, and reload the server it outputs the same two errors...
  6. S

    Question TranslatableComponent from item type in an item's lore

    I FFFINALY figured it out List<Component> lore = new ArrayList<Component>(); final Component message = Component.translatable(is.getType().translationKey()); lore.add(message);
  7. S

    Question TranslatableComponent from item type in an item's lore

    Helloo, i'd like to know how can i use a translatable component of an item type, in an item's lore (the title speaks for itself) I've never used translatableComponents before so i dont really know what am i doing XD TranslatableComponent text = new...