Jump to content

FireController1847

Members
  • Posts

    290
  • Joined

  • Last visited

Posts posted by FireController1847

  1. Yeah, I realized that the github you gave me had that like >.<

     

    Still... Nobody has tutorials about 1.9 Blocks and Items?

     

    And I think I might contribute, but how? I haven't seen any buttons on the wiki

  2. Yeah, I realized that the github you gave me had that like >.<

     

    Still... Nobody has tutorials about 1.9 Blocks and Items?

     

    And I think I might contribute, but how? I haven't seen any buttons on the wiki

  3. I'm not sure. I guess I just like to manage the way that I do it >.<

     

    And that's on Github, which I'm not fully familier with. I just think it would be nice to have a Wiki that is easy to traverse and understand. It's like saying that the link below should have contributed to the official one. Maybe he just wanted to do it his own way, you know?

     

    Still, I would like SOME tutorial to learn about 1.9 Items and Blocks, not just for the Wiki, but for me.

     

    http://bedrockminer.jimdo.com/modding-tutorials/

  4. I'm not sure. I guess I just like to manage the way that I do it >.<

     

    And that's on Github, which I'm not fully familier with. I just think it would be nice to have a Wiki that is easy to traverse and understand. It's like saying that the link below should have contributed to the official one. Maybe he just wanted to do it his own way, you know?

     

    Still, I would like SOME tutorial to learn about 1.9 Items and Blocks, not just for the Wiki, but for me.

     

    http://bedrockminer.jimdo.com/modding-tutorials/

  5. Hello! I am creating a wiki, but it's really hard to create one when you don't know what you're doing. I know how to do a couple of things in minecraft 1.7.10, but I have no idea how Items or Blocks work in minecratf 1.9. If anyone would be willing to at least lead me to a tutorial that will explain the whole process to me, thanks!

     

    And yes, GameRegistry.registerItem is deprecated. I learn best with Examples, so explaining it to me won't do much... Mainly just examples of how to do it.

     

    I have everything set up that I need. MainRegistry, Strings, ClientProxy, and CommonProxy.

     

    http://minecraft-forge-tutorials.wikia.com/wiki/Minecraft_Forge_Tutorials_Wikia

  6. Hello! I am creating a wiki, but it's really hard to create one when you don't know what you're doing. I know how to do a couple of things in minecraft 1.7.10, but I have no idea how Items or Blocks work in minecratf 1.9. If anyone would be willing to at least lead me to a tutorial that will explain the whole process to me, thanks!

     

    And yes, GameRegistry.registerItem is deprecated. I learn best with Examples, so explaining it to me won't do much... Mainly just examples of how to do it.

     

    I have everything set up that I need. MainRegistry, Strings, ClientProxy, and CommonProxy.

     

    http://minecraft-forge-tutorials.wikia.com/wiki/Minecraft_Forge_Tutorials_Wikia

  7. I have two questions:

     

    1. Is there a way to direct a light to a certain direction of a block? So instead of it being fully around the brick in a whatever by whatever area, to be directed from the front of the block forward

     

    and 2. How do I make it so that the tile entity's front is facing the direction you're facing, like a sign? I'm pretty new to Forge Mod Creating, but I have figured out how to create tile entities, and get them working. I just need to have them rotate the direction your facing, so go easy on me! :P

     

    Thanks in advance!

  8. I have two questions:

     

    1. Is there a way to direct a light to a certain direction of a block? So instead of it being fully around the brick in a whatever by whatever area, to be directed from the front of the block forward

     

    and 2. How do I make it so that the tile entity's front is facing the direction you're facing, like a sign? I'm pretty new to Forge Mod Creating, but I have figured out how to create tile entities, and get them working. I just need to have them rotate the direction your facing, so go easy on me! :P

     

    Thanks in advance!

  9. Show your main mod class and your proxy classes.

     

    That said, this:

    	public static void init(FMLInitializationEvent event){
    	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
    }

    Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

     

    I just edited it with the client proxy now as well for you

  10. Show your main mod class and your proxy classes.

     

    That said, this:

    	public static void init(FMLInitializationEvent event){
    	GameRegistry.registerTileEntity(TileEntityTestCustomModel.class, "TestCustomModel");
    }

    Belongs nowhere in the TileEntityTestCustom class.  It belongs in your main class along side all your other registration code.

     

    I just edited it with the client proxy now as well for you

×
×
  • Create New...

Important Information

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