Ok, thanks, I've done that in Eclipse. I created a new class called mod_dirt and put the code in the public void, but in the mpc folder there is a startclient to test? But the smelting doesn't work so I dont think it's testing from the Eclipse folder where you set your workspace. So how do I test it now I have put the code in the public void?
sorry, I'm not sure since I'm not using mcp. You could check the mcp wiki...
The Meaning of Life, the Universe, and Everything.
Location:
Madison
Join Date:
12/4/2010
Posts:
198
Minecraft:
jrockjake
Member Details
Hm I think I got this thing down, would anyone test this for me? You should be able to turn raw pork into bacon strips and bread into slices as a shapless recipe.
I'm just using Textedit (I'm on a Mac) to write the documents, then saving them as plain text and switching them to class files in finder. To install it, I use the way Risugami describes in his post with his mods.
When life gives you a potato, wonder why the heck life just gave you a potato. Why not something else? Like money? Or a combustable lemon? No, you get a potato. Nothing else.
Have you figured out how to create new containers? Something like a chest, but not a chest... I have a MOD idea in my head but having issues trying to get my head around the chest coding.
I cannot find the code 'setCreativeTabs' when I tried to use it. Instead, there were 'func_77637_a', which does the exact same thing.
You decompiled Minecraft when MCP didn't have the name for it updated.
Rollback Post to RevisionRollBack
“Computers are incredibly fast, accurate and stupid; humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination."
Thats exactly how the tutorial said to do it, lol. So replace the "True" and "false" with a 0 or...?
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumSo it would fit in like this
public ItemChain(int i) { super(i); setCreativeTab(CreativeTabs.tabMisc); maxStackSize = 64; }at the end of the public void load() function, just like it says in the block tutorial.
sorry, I'm not sure since I'm not using mcp. You could check the mcp wiki...
http://adf.ly/Bosin
im gay
I'm just using Textedit (I'm on a Mac) to write the documents, then saving them as plain text and switching them to class files in finder. To install it, I use the way Risugami describes in his post with his mods.
when i do a texture for an Item this is what happens:
[ Spoiler ]
Please help
If you read his post he isn't taking requests.
You need to make the background of your image transparent.
>:[
Edit the file in GIMP, right click your layer, Add Alpha channel, then use the magic wan tool to delete the white spaces around your pokeball. :3
im gay
To quote myself, here's an example :3
im gay
-
View User Profile
-
View Posts
-
Send Message
Retired Staffpublic boolean onBlockActivated(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9)
{
if(par5EntityPlayer.getHeldItem().equals(new ItemStack(mod_MyMod.MyIngot)))
{
ModLoader.openGUI(par5EntityPlayer, new GuiMyGui());
return true;
} else {
return false;
}
}
}
-
View User Profile
-
View Posts
-
Send Message
Curse Premiumhttp://www.minecraftforum.net/topic/1421717-131-modloader-modding-tutorial/
You decompiled Minecraft when MCP didn't have the name for it updated.
together they are powerful beyond imagination."
im gay
Hover over the Random that is underlined with your mouse. When the windo pops up, tell it to import the Random from Java.