Jump to content

Cadiboo

Members
  • Posts

    3624
  • Joined

  • Last visited

  • Days Won

    58

Everything posted by Cadiboo

  1. If it doesn’t work your likely doing something wrong, also a heads up, metadata is being removed in 1.13
  2. That number is the metadata for the item
  3. WARNING: coremods are present: LucraftCoreCoreMod (LucraftCore-1.12.2-2.1.1.jar)Contact their authors BEFORE contacting forge report the rhe developers of LucraftCoreCoreMod. Minecraft should work properly if you disable that mod and any mods that use it
  4. This post is over a year old just so you know, but I’m sure that people in the future will appreciate that knowledge
  5. Do you have a GitHub? From your posts you appear to be doing some pretty crazy stuff to poor Minecraft and I’m wondering what the entire project looks like
  6. I’m pretty sleep deprived right now, and I don’t know if this is what your looking for but I had a similar issue (I was using xyz instead of pitch/yaw). I wrote a method that gets the coordinates to render at very exactly. Have a a look at the entityPos variable in https://github.com/Cadiboo/WIPTech/blob/master/src/main/java/cadiboo/wiptech/client/render/tileentity/TESRWire.java and the method that creates it (getEntityRenderPos) at https://github.com/Cadiboo/WIPTech/blob/master/src/main/java/cadiboo/wiptech/util/Utils.java The object (“Position”) it returns is pretty self explanatory. A double accuracy point in 3D space
  7. I can’t understand what your trying to do, but if your trying to render an item stack into a GUI with opacity (ghost item?) then look at how recipe book does it, or I have a number of ItemStack rendering functions in my mod’s Utils class cadiboo.wiptech.util.Utils.class you can find a link to my github in my signature
  8. Looking at the slowness and jump boost effects might help. For example in vanilla extremely high levels of both will “freeze” the player, making them unable to walk or jump, while they can still fall
  9. Gotten by the client with a packet _if_ they have the permission. It’s not a good option but it might be the closest thing possible
  10. Not exactly but looking at /blockdata might be helpful... you do get the information without opening the chest
  11. You can easily get around all this by just naming your models <item_name>.json and registering the models with ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory"));
  12. It doesn’t have to be an enum, it can be almost anything, however the most common things that are used are booleans, enum and integers. Remember you are going to have to be syncing your capability a lot, so yes enums are probably the best choice
  13. They are hard, but once your heads round them they Just Work (aside from syncing) What method is "completely deprecated"???
  14. This might be a good post to take a look at, and its relatively recent. http://www.minecraftforge.net/forum/topic/63654-capabilities/
  15. I assume IPB is the website builder/ whatever you want to call it that you are using? If thats true and this is the right company, you should be able to achieve this by editing the HTML template. https://invisioncommunity.com/4guides/themes-and-customizations/advanced-theming/using-the-template-editor-r125/
  16. Are you sure you need multiple capabilities? why not just one capability with all those values in it? What are you using your capability on? If your using Items/ItemStacks have a look at this code in my mod where I implement both the Energy Capability and my own Weapon Modules capability on my Item/ItemStack ItemGun This code is probably very messy and bad, but it was based on code written by one of Actually Additions authors, so I doubt its that horrible.
  17. Can you please mark the topic as solved? Also thought you would probably want to know that the link in your signature to your GitHub is broken!
  18. I assume you are inside the player block break event? Have a look at what I do in my EventSubscriber class
  19. Great! Please tag your topic with the Minecraft version and mark it as solved to help people in the future. You can change the title by editing the first post and changing the title to "[SOLVED] [1.12.2] Forge server crashes on launch".
  20. You NEED to use java version 8, minecraft and minecraft-forge will not run on any other version
  21. I might be barking up the wrong tree, but what java version are you using? and in future can you post the entire log (preferably in a spoiler though github/pastebin are ok)
  22. Probably the most common comment on posts in Support & Bug Reports is something along the lines of "We can't do anything without logs". I think that putting a little reminder the Create Topic window saying to always post your logs would be very useful. Just something small along the lines of "If you are asking for support with a problem you are having we need your logs to help you. Detailed instructions on how to locate your Minecraft folder and then find your logs and crash reports can be found at https://minecraft.gamepedia.com/.minecraft. Please post all logs inside a spoiler (click the eye icon)." I recommend that this should be placed above or below the main content box. (Indicated with the Aqua lines) Also reminding people to tag their posts with the version in the title would be helpful. Thanks for your consideration!
  23. Create a new topic Also, use the Installer instead of the Universal if possible.
×
×
  • Create New...

Important Information

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