Jump to content

Hipposgrumm

Members
  • Posts

    361
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Hipposgrumm

  1. I would help you if I was allowed to, but we only support recent versions, it says so at the top of the page. I noticed that you seemed to be on Hypixel or some other similar server. Since Hypixel players mostly use 1.8.9, I was thinking you might find help over there. But on the Forge forum we are not allowed to help you if you are using a version that is not latest or LTS; it's in the rules.
  2. What do you mean when clicked? When right clicked in hand, right clicked in a GUI, interacted with while in an item frame...?
  3. 1.8.9 is an ancient version that is no longer supported here. We only support 1.18.x and 1.19.x. You can ask on Hypixel forums where you may find support.
  4. 1.16.5 is no longer supported here. We only support 1.18.x and 1.19.x.
  5. The file you downloaded IS the forge.jar that you need to run with Java, which you need to install if you don't have it installed already.
  6. Here is my code on doing some similar summoning with data. private void spawnPreview(boolean invis) { CompoundTag extraNBT = new CompoundTag(); extraNBT.putBoolean("NoGravity", true); extraNBT.putBoolean("Invisible", invis); extraNBT.putBoolean("ShowArms", true); extraNBT.putBoolean("NoBasePlate", true); preview = new ArmorStand(this.minecraft.player.getLevel(), 0, 0, 0); preview.load(extraNBT); } I modified it slightly to get the right point across, but you need to add data to the summoned entity.
  7. Modern versions of Minecraft are running on an entirely new engine that may take up more resources. Additionally, this is not a specifically Forge-related question, so I will give no more detail.
  8. 1.12.2 is no longer supported here. We only support 1.18.x and 1.19.x.
  9. 1.16.5 is no longer supported here. We only support 1.18.x and 1.19.x.
  10. Go to your run script for the server and where it says all of the stuff with dashes preceding them, add --debug to it.
  11. Mixin is not supported by Java 19. You must downgrade to Java 17.
  12. You are asking for help with a Fabric server, we are Forge and only help with Forge. Please ask where there is support.
  13. You might want to check the logs. There might be something there.
  14. Can you post the entire log? (To Gist or Pastebin please)
  15. This might do nothing but try running the jar with the --debug flag.
  16. It looks like you have 2 graves mods installed. You might want to remove one.
  17. What the heck are you trying to do? If you want to remove a command that you added, just remove or comment out the code that registers that command! If you are trying to completely remove a command during runtime, that is probably impossible.
  18. You can try looking ad how quark does it, but it might still be pretty confusing.
  19. Something is using the port already. Are you running another game or instance of Minecraft? Maybe the server is still running in the background of your computer. You have to stop the server via the stop command because the server console is just a screen of something projecting from a backgrounded process (at least that was the case running a server on Linux). Open up task manager and see if Java is still running in the background.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.