Minecraft Blogs / Tutorial

How to Make a Minecraft Food: With download code!

  • 1,543 views, 1 today
  • 1
  • 0
  • 6
oCanaduhh's Avatar oCanaduhh
Level 32 : Artisan Pokemon
12
Hey guys, oCanaduhh here! The recent success of my Juggernaut mod (or JuggerMod 1.0) had inspired me to give out a code that I used for the item 'Painkiller'. Anyway, all you have to do in the code [providing you have MCP, JDK and Eclipse set up] is change everything that says something like 'youritem' or 'your directory'.

You do need ModLoader installed on MCP for this to work.

Anyhow, here is the code. Simply make a new file called 'mod_YourModNameHere.java' and copy + paste!

Code

package net.minecraft.src;

import java.util.Map;

public class mod_YourModName extends BaseMod
{

public static final Item yourfoodname = (new ItemFood(605, 10, 2F, true)).setIconIndex(ModLoader.addOverride("/gui/items.png", "yourdirectory")).setItemName("yourfoodname");


public mod_yourmodname()
{
ModLoader.addRecipe(new ItemStack(yourfoodname, 3), new Object[]
{ "XYZ", Character.valueOf('X'),Item.youritem, Character.valueOf('Y'),Item.youritem, Character.valueOf('Z'),Item.youritem
});



}

public void load()
{


}


public String getVersion()
{
return "yourfoodname";
}

}
Tags

Create an account or sign in to comment.

meepgofish
05/07/2012 2:15 am
Level 4 : Apprentice Cake
meepgofish's Avatar
dont worry ive done with modding i cant play minecraft for a while because to mod i had to change the enviromental variable path and i dont know how to change it back
1
meepgofish
05/06/2012 5:01 pm
Level 4 : Apprentice Cake
meepgofish's Avatar
where do you put the .java file once done with it
1
oCanaduhh
05/06/2012 7:37 pm
Level 32 : Artisan Pokemon
oCanaduhh's Avatar
You put it with the rest of the .java files. If you've done that, go to MCP, recompile, then click 'reobscrucate' or something like that. After it is finished with that, go to a folder called 'reobf' to obtain your mod in .class form so it's playable
1
meepgofish
05/06/2012 4:48 pm
Level 4 : Apprentice Cake
meepgofish's Avatar
oh found it
1
meepgofish
05/06/2012 4:44 pm
Level 4 : Apprentice Cake
meepgofish's Avatar
where is the code?
1
oCanaduhh
05/06/2012 7:35 pm
Level 32 : Artisan Pokemon
oCanaduhh's Avatar
There is a spoiler that says 'code' just simply click that, copy and paste
1
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome