Jump to content

DinoPawz

Members
  • Posts

    48
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DinoPawz's Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. I created my entityblock hanging sign texture using the HangingSignRender model details. But I don't know where to put it in Minecraft's and my mod's data directories. I have tried both minecraft.textures.entity.signs and minecraft.textures.entity.hanging_signs with no luck.
  2. On Windows 11 we can longer unzip jar files, ie. the mc client jar. The mc debugger is kind enough to tell us that we need some model files, but we are clueless as to what needs to go in them, and what the blockEntity hanging_sign png should look like.
  3. Forge was kind enough to give us 1/3 of the config code in the Java Example. I created the client spec similar to the common spec example and registered both in the mods main class. But where and how do we do the rest?
  4. getMyRidingOffset doesn't take a parameter. My mob can ride two living entities, one modded, one not. For the modded one I have to adjust it to work correctly. But when the mob rides the vanilla mob, mc applies the modded entity offset to the vanilla mob, resulting in the mob being submerged within the vanilla entity's body. I have had a look at overriding the positionRider function that uses getMyRidingOffset, but that doesn't provide the vehicle entity either.
  5. I tried my mob in 1.18.2 and got exactly the same result. Still cannot visually mount a player in 1.18.2 either. A mob mounting a player worked in 1.12.2.
  6. You have effectively enchanted the already enchanted book instead of adding the enchantment.
  7. The entity constructor wants something other than null passed in.
  8. In the Demo mod, go through all the files and make sure that all instances of Example Mod are replaced by the details of your mod. And make sure your mod details at the top of the build.gradle file matches your mod details at the bottom (in the jar section).
  9. You have registered the SynchedEntityData variable DATA_IS_CHARGINGG twice. And your mob should work fine and be more code efficient if you don't bother getting the attributes in the constructor.
  10. Oh, thanks I felt dumb after posting this I deleted but here it is. And yes, I found my BlockItem instance in my Item registration class.
  11. If mc doesn't like your code in an Overridden function, it decides not to run that code and shows you the issue with the "does not override or implement a method from its supertype" error. You will see that if you remove the Override annotation, then there will be no action icon in the margin cos mc is unwilling to run it. To fix it, you must recreate mc acceptable code.
  12. In your build.gradle file your versions are not identical. The version must match the Specification-Version
  13. That log has so many errors it's a wonder mc loaded at all. Not fit for multiplayer.
  14. This guy does great mc modding video tutorials:https://www.youtube.com/@ModdingByKaupenjoe
×
×
  • Create New...

Important Information

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