Jump to content

guyWITH2forks

Members
  • Posts

    20
  • Joined

  • Last visited

Everything posted by guyWITH2forks

  1. SOLVED: I added a @SideOnly and changed the method signature and it worked! Thanks for all the help gentleman!
  2. I dont think so. crash-2018-08-29_18.15.06-server.txt
  3. I thought I was suppose to remove the @Override from the HeavyHelmet class. I have updated GitHub.
  4. Correct me if I am wrong, but isnt the error happening in the ModItems class and not even reaching the HeavyHelmet class? I changed the method signature and nothing seems to have changed error wise.
  5. No @SideOnly crash-2018-08-29_17.04.06-server.txt
  6. Here ya go. This is with the @SideOnly(Side.CLIENT) added in the ModItems class. crash-2018-08-29_16.41.44-server.txt
  7. You are right, that was one of my many attempts to get it working. Even with that their however, the error still persists.
  8. Just got it all up on GitHub, here is a link to it. https://github.com/guyWITH2forks/Military-Armor-Mod/tree/master/armormod The ModItems class in the Init Package is where my error is coming from if that wasn't clear (probably is but thought I would mention it). Disclaimer: There is a lot of commented out code, i'm still learning so its all messy. I apologize.
  9. Then why is it saying that its trying to call the Minecraft ModelBiped class which is sided?
  10. Thank you, I sided all of my model classes so that the model rendering onbly happens client side. But it is still saying the ModelBiped class is missing when it runs: public static final Item HEAVY_HELMET = new HeavyHelmet("heavy_helmet", ARMOR_HEAVY, 1, EntityEquipmentSlot.HEAD); Which part of this needs to be sided? I am assuming the server still needs to know that the piece of armor exists?
  11. Hello, I recently completed my Armor mod, and when I run it in a Forge server, I get the following error: Exception in server tick loop java.lang.NoClassDefFoundError: net/minecraft/client/model/ModelBiped I am confused as to why I am missing a minecraft class? Attached is the full crash report. Thanks crash-2018-08-26_14.32.18-server.txt
  12. Hello, I am trying to add an overlay that will restrict peripheral vision for some night vision goggles. I was hoping to do something like when the player wears a pumpkin and has to look through the carved part of the block. I don't know how to add it to my night vision helmet. Any help would be great. Thanks
  13. Hello, So I know I say this a lot, but... I am creating my own dimension that is supposed to mimic the Moon. The idea is that when the player enters the dimension they are given the status effects of jump boost to simulate the lower gravity. When 1.13 releases I will also add slow falling. How would I go about this? Do I add something to my dimensions world provider? And what do I add? I also thought it would be cool to give the poison effect(or something similar) unless the player is wearing a full set of "Space Suit" armor to simulate suffocating. I apologize I am only about 4 months into modding, but would love to start a conversation and hear some ideas on how to achieve this! Sköl brothers
  14. Hello, So I am currently in the proccess of creating my own dimension. I have the dimension generating properly, and the custom blocks spawning as they should. The issue I seem to have run into is that no light sources work at all. Its as if the light level is permanently zero. I tried looking into my World Provider for something I missed in the light brightness table calculations. If you have an idea of what this could be, as a result of this being a common problem please let me know! If its me missing something specific, then I can post code as needed. Any help would be fantastic as this is the last problem to fix! Thanks [Update] I solved this issue by removing the overridden "generateLightBrightnessTable" method. I guess the game doesn't want me to tamper with it.
  15. Hey guys, so I am currently attempting to create my own dimension using a custom biome, and only that biome. I have a Chunk Generator, and a world type + world provider. My issue is, my dimension does not generate using my biome unless I use BiomeProviderSingle in a world type. What I want, is for my dimension to be a single biome, but the overworld still generator normally. Meaning when I create a new world, I don't want to use my custom world type, I just want to use the standard world with a custom dimension added. Do I need my own Biome Provider? or is there a place that I can specify for the dimension to only use one biome. Disclaimer, I am relatively new, so excuse me if I ask a stupid question. Thanks.
  16. Hey guys, I need some help with a portion of my mod. I am trying to build a sort of moon dimension that mimics being in space. What I wasn't to do to simulate not being able to breath in space is to have the player automatically poisoned if when they spawn into the world. My custom armor (Space suits) will then negate this effect for a duration. How do I go about adding in the poison effect at spawn to my custom Dimension/Biome? Any help would be appreciated, and if you have examples, the more the merrier. Cheers
  17. Thanks jabelar, turns out I was only registering the postInitRegistries and not the preInit.
  18. Hey guys, so I am trying to create my own Biome that mimics the Moon. I am using in the Biome class "this.spawnableCreatureList.clear();" for all four lists (Cave, water, Monster, and Creature) so that no mobs will spawn in the biome. For some reason, this is not working and all mobs are still spawning. Anyone have any ideas? Secondly, I would love to make the biome only use my custom blocks and not stone, dirt, and all the vanilla blocks. Is it possible to generate the world with just the mods blocks. Finally, I would love to get water to stop spawning as well, like in the nether. Any help would be great, thank you in advance BiomeMoon.java ModBiomes.java
  19. Thank you Gentleman, I shall dive into it. do you know if this approach is going to carry over to 1.13?
  20. Hey guys, So I am looking to add inventory to equipped armor. In other words, I have armor that mimics a tactical vest, and I want it to give the player a little extra inventory, and also display that inventory in the HUD. I dont know where to start, I see a lot of blocks with inventory tutorials, but I am assuming I dont need Tile Entities for items? any guidance would be extremely appreciated. FYI I have the items classes and all of the models and textures rendered and working.
×
×
  • Create New...

Important Information

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