Jump to content

LeChevalierD_Or

Members
  • Posts

    19
  • Joined

  • Last visited

Recent Profile Visitors

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

LeChevalierD_Or's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Hello, I would like to know how I must do to have all the half-blocks and all the stairs posable in all directions ... I have no idea ... Regards LeChevalierD_Or
  2. Thanks anyway for your help (and for your patience) =) Okay I'm reopening a new post. Thank you I declare the problem solved ...
  3. Besides, should I open a subject or I can just have a question ... If so here it is: How can I do so that all the half-blocks can be positioned in all directions?
  4. thank you, but the problem did not come from there =)
  5. public static void register(IForgeRegistry<Item> registry) { registry.registerAll(ingotCopper); } public static void registerModels() { ingotCopper.registerItemModel(); } } if that's what you expect from me I've already put it in another class!
  6. Negative I have a very good knowledge of JAVA but not in forge!
  7. Hi, there seems to be a problem but I do not know how to help you. Explanations: When I run the game via eclipse and I go in the CreativeTabs "BuildingsBlocks" I can not find my item CopperIngot = ( Please help me =) Here is a folder where there are all my classes =) Thank you in advance ... error.zip
  8. Hi, I would like to know if until I get well: package com.cubicdeath.blocks; import net.minecraft.item.Item; import net.minecraftforge.client.event.ModelRegistryEvent; import net.minecraftforge.event.RegistryEvent; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.registries.IForgeRegistry; @Mod(modid = Main.modId, name = Main.name, version = Main.version) public class Main { public static final String modId = "cubicdeath_block"; public static final String name = "CubicDeath Block"; public static final String version = "1.0.0"; @Mod.Instance(modId) public static Main instance; @SidedProxy(serverSide = "com.cubicdeath.blocks.CommonProxy", clientSide = "com.cubicdeath.blocks.ClientProxy") public static CommonProxy proxy; @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { System.out.println(name + " Et en chargement..."); } @Mod.EventHandler public void init(FMLInitializationEvent event) { } @Mod.EventHandler public void postInit(FMLPostInitializationEvent event) { } @Mod.EventBusSubscriber public static class RegistrationHandler { @SubscribeEvent public static void registerItems(RegistryEvent.Register<Item> event) { Main.register(event.getRegistry()); } @SubscribeEvent public static void registerItems(ModelRegistryEvent event) { Main.registerModels(); } } public static void register(IForgeRegistry<Item> registry) { } public static void registerModels() { } }
  9. Unfortunately I do not have any more code I am in total incomprehension = (
×
×
  • Create New...

Important Information

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