Recent content by Machine Maker

  1. Machine Maker

    Solved GENERIC_MAX_HEALTH disappear after using bootstrapper

    No, it is relevant. If you use paper-plugin.yml, your plugin's bytecode is not rewritten to handle the renaming because all of paper plugins are experimental. If you used a plugin.yml, then it was handled correctly. No, no such compatibility will be added. Only for changes made after paper...
  2. Machine Maker

    Solved GENERIC_MAX_HEALTH disappear after using bootstrapper

    GENERIC_MAX_HEALTH was renamed in some recent update. Make sure your api dependency is up to date. There is no backwards compatibility promised yet for paper plugins as they are still experimental. So they don't go through the bytecode rewrites required to update plugin bytecode to the new names...
  3. Machine Maker

    Question /setworldspawn not spawn the exact coordinate

    You probably need to set the spawnRadius gamerule to 0. By default, vanilla respawns you in a radius around the world spawn, not the exact spot.
  4. Machine Maker

    Solved Material enum doesnt work

    You seem to be missing some fundamentals in the java programming language, as well as understanding of syntax highlighting. The first image is invalid java, the second image is missing a semicolon, the 3rd image just shows that the Material import isn't being used.
  5. Machine Maker

    Solved Item Enchanted Glow 1.21.1

    You can set the enchantment glint override datacomponent on an itemstack via a command or via the API on ItemMeta
  6. Machine Maker

    How to Adjust Text Size on a Display?

    If you want the text entity to show something different to different players, you are going to have to do that with packets, listen for specific synched entity data packets from the entities and adjust the text display based on which client is getting the packet.
  7. Machine Maker

    How to Adjust Text Size on a Display?

    I think you can just use the scale attribute to make it bigger. I haven't tested it to be sure, but the "scale" attribute is for changing the size of any entity, small or bigger.
  8. Machine Maker

    Question Custom Enchantments

    Take a look at this newly added API (still Experimental) for mutating registries.
  9. Machine Maker

    Question Creating a command using PluginBootstrap

    You can see example usages of the commands lifecycle event both on the javadocs and the regular docs.
  10. Machine Maker

    Question argument

    In the future, look at the generic parameter for the ArgumentType you are using from the ArgumentTypes class. That will show you the type you have to use in the getArgument() method.
  11. Machine Maker

    Question Paper Ver 1.20.6 Build#147 Error.

    We need more information than "not working". Are you trying without plugins? Is there an error in the log? Can you post the log? What happens when you do run it?
  12. Machine Maker

    Question Every player gets infinite mining fatigue

    I mean it's going to be one of your plugins and/or datapacks. I would recommend doing a binary search of plugins to try and find the culprit. It's unlikely that someone is going to know all the functionality of all the plugins you've got listed.
  13. Machine Maker

    Solved Material enum doesnt work

    Well the 1.20.6 API requires java 21, but I think your issue was caused by the outdated intellij version specifically
  14. Machine Maker

    Solved Material enum doesnt work

    You probably have to update IntelliJ and also use Java 21
  15. Machine Maker

    Question Wandering trader caused server crash?

    We do not support old versions. Numerous bugs and exploits are present in 1.20 that we have no intention of fixing. As I said, the currently supported versions on any official Paper system (discord, GitHub, forums) are 1.20.4 and 1.20.6. Feel free to go elsewhere to seek support for your issue.