Jump to content

chewie71

Members
  • Posts

    7
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Recent Profile Visitors

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

chewie71's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. How do I open crafting table on right click with my item? This is what I have, but I don't know what to add in the onrightclick package BitBox.Mods.MinecraftPlus.Main; import net.minecraft.client.renderer.texture.IconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemFood; import net.minecraft.item.ItemStack; import net.minecraft.server.gui.MinecraftServerGui; import net.minecraft.world.World; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class ItemPortCrafting extends ItemFood{ public ItemPortCrafting(int par1, int par2, boolean par3) { super(par1, par2, par3); this.setCreativeTab(CreativeTabs.tabMisc); } @SideOnly(Side.CLIENT) public void registerIcons(IconRegister par1IconRegister){ itemIcon = par1IconRegister.registerIcon("minecraftplus:portcrafting"); } public ItemStack onItemRightClick(ItemStack itemStack, World world, EntityPlayer Player) { } }
  2. Just look at the water bucket code and test stuff out.
  3. That sounds like it will take ages. I guess I will have to do the dyes ;(
  4. I am making a mod where you can have colored wood. Instead of using dyes, I want to be able to have a Hex Color picker on a GUI and the user can pick a color they want, and then they get it that color. Is this possible?
  5. Hi there member of the forge forums! This morning, I just lost my whole mod after trying to recompile, so I decided to make a new mod. When I downloaded the latest 1.6.4 version SRC in the forge folder, there is no install.bat! Do you know where it has gone? Thanks c71
  6. I have recently started modding, and I can now create blocks in around 2 minutes, but I am having some problems with making the leaves transparent, and for the leaves to decay. I have had a look around the Minecraft leaves file, but because I am still a beginner, I don't understand half the stuff about arrays and such. If you can help, please do so. Thanks
×
×
  • Create New...

Important Information

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