Jump to content

Xoroshio

Members
  • Posts

    63
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Xoroshio

  1. Hi, the microphone mod is not working on my Mac. It says “launcher does not support MacOS microphone permissions” Thank you in advance for answering.
  2. Make sure you have Optifine installed as a mod. Go into Options > Video Settings > Shaders > and then click the shader you want Make sure the shader.zip files are in the shaderpacks folder inside the minecraft folder
  3. You might need to have a custom model for the block too.
  4. What jar files are you trying to open and why are you trying to open them?
  5. Hello there, you have the wrong Java version and you need to update not downgrade. I hope this helps
  6. You have to create an Entity class called PlayerPart and use multiple of them to make the different parts of the player. See EnderDragonPart.java source code. The green hitboxes of the dragon are all EnderDragonParts
  7. Yeah, so deltaMovement and jumping have to be done on the client. The reason it only happens on the client is so that the animations are smooth. Client to server communication for movement is not very smooth. You can move the player with player.setPos(x, y, z) on the server using manually managed velocity, but the player’s movement on the client will not be smooth. I hope this helps 😃
  8. On the one off the last lines of code you have put && boots.isEmpty() Instead of && !boots.isEmpty() is that a typo?
  9. Does anybody know how to add music to a custom dimension? In the dimension I have, I am only using vanilla biomes. Please forgive me if this is a dumb question 😊
×
×
  • Create New...

Important Information

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