Jump to content

guyWITH2forks

Members
  • Posts

    20
  • Joined

  • Last visited

Posts posted by guyWITH2forks

  1. 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?

  2. 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

  3. 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

  4. 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.

  5. 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.

  6. 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

  7. 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

  8. 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.