Jump to content

Lemcram

Members
  • Posts

    18
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Germany

Lemcram's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Ok thanks
  2. Can you recommend me another?
  3. Ok thanks I've just done that what the tutorial sad.
  4. you can open it in your browser without a download
  5. https://drive.google.com/open?id=0B9-6c-T6PpwqYjI5YUFaaERLMHM
  6. ItemHandler: public class ItemHandler { /*Item variables*/ public static Item PoweredNetherStar; public static void init(){ PoweredNetherStar = new ItemPoweredNetherStar("Powered_Nether_Star", CreativeTabs.MATERIALS); } public static void register(){ GameRegistry.register(PoweredNetherStar); } public static void registerRenders(){ registerRender(PoweredNetherStar); } public static void registerRender(Item item){ Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory")); } } Item class: public class ItemPoweredNetherStar extends ModItems{ public ItemPoweredNetherStar(String name, CreativeTabs tab) { super(name, tab); } } or just look here: http://couchdoescode.blogspot.de/2017/02/items.html I've done nearly everything like there
  7. Yeah in know but I only registed it once. I already tried it with other names an there was always the same error.
  8. I have a problem everytime when I start the game it crashes in the last phase with the attched error. I've done everything like in this tutorial: http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/2790483-1-11-2-forge-minecraft-forge-modding-tutorials-up crash-2017-05-20_20.46.08-client.txt
  9. Thanks for help
  10. Ok I have imported the project, that I created before I tried to install it on my USB drive and now it works. On my PC if it woks on another I have to see. Ok I had to set the environvent variable and then import the project.
  11. I have set the variable and put the gradle wrapper in there. Then I run the setup, that worked. But if i start eclipse then I have the same error.
  12. I have done this now with the system settings but I can only do this as admin. Is there another option to do it as normal user?
  13. Sorry I'am very new at this topic. Can you tell me how I can change the environment variable? Everything I thought how it works doesn't work.
  14. Ok can you show me example for wich folder I have to import? Only the path or something, because I don't now exactly what you mean. Or should I take a screenshot of the folder that you guys now how it is?
  15. Ok and do I need administrator rights for that or does it also works without?
×
×
  • Create New...

Important Information

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