Jump to content

Need Help Quickly!!


vandy22

Recommended Posts

So ive been looking around and posting in many forums and have been getting no responses. For some reason my mod is acting up. I have recompiled and rebofuscated it. I have it in the correct location and everything and this is the error I get:

 

Minecraft Error(From the actual Client):


      Minecraft has crashed!      
      ----------------------      

Minecraft has stopped running because it encountered a problem; Failed to start game

A full error report has been saved to C:\Users\jacks_000\AppData\Roaming\.minecraft\crash-reports\crash-2013-03-16_10.24.28-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash 



--- BEGIN ERROR REPORT 15056c9e --------
Full report at:
C:\Users\jacks_000\AppData\Roaming\.minecraft\crash-reports\crash-2013-03-16_10.24.28-client.txt
Please show that file to Mojang, NOT just this screen!

Generated 3/16/13 10:24 AM

-- System Details --
Details:
Minecraft Version: 1.4.7
Operating System: Windows 8 (amd64) version 6.2
Java Version: 1.7.0_13, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 367941512 bytes (350 MB) / 514523136 bytes (490 MB) up to 954466304 bytes (910 MB)
JVM Flags: 2 total; -Xms512m -Xmx1024m
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v7.26 FML v4.7.4.520 Minecraft Forge 6.6.0.497 4 mods loaded, 4 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
JV's ToolPack [JV's ToolPack] (JV'sToolPack.zip) Unloaded->Constructed->Pre-initialized->Errored
LWJGL: 2.4.2
OpenGL: AMD Radeon HD 7570 GL version 4.2.11750 Compatibility Profile Context, ATI Technologies Inc.
Is Modded: Definitely; Client brand changed to 'forge,fml'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: ~~ERROR~~ NullPointerException: null

cpw.mods.fml.common.LoaderException: java.lang.VerifyError: (class: tutorialtest/ItemTutorialHelmet, method: getArmorTextureFile signature: (Lur;)Ljava/lang/String;) Bad access to protected data
at cpw.mods.fml.common.LoadController.transition(LoadController.java:117)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:658)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:207)
at net.minecraft.client.Minecraft.a(Minecraft.java:456)
at asq.a(SourceFile:56)
at net.minecraft.client.Minecraft.run(Minecraft.java:744)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.VerifyError: (class: tutorialtest/ItemTutorialHelmet, method: getArmorTextureFile signature: (Lur;)Ljava/lang/String;) Bad access to protected data
at tutorialtest.mod_tutorial.load(mod_tutorial.java:185)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:485)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:657)
... 5 more
--- END ERROR REPORT 5263e850 ----------

 

The game runs from eclipse fine everytime. Its also weird how I have 8 other armor sets and they all contain helmets, all our programed the same way just different icon indexes, textures, and all that jazz. Im not sure what the problem is here. It also refers the the ItemTutorialHelmet class so here it is:

 

ItemTutorialHelmet class:

package tutorialtest;

import tutorial.client.ClientProxy.ClientProxy;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.IArmorTextureProvider;

public class ItemTutorialHelmet extends ItemArmor implements IArmorTextureProvider{

public ItemTutorialHelmet(int par1,	EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4) {
	super(par1, par2EnumArmorMaterial, par3, par4);

}

public String getTextureFile(){
	 return ClientProxy.ITEMS_PNG;

}

public String getArmorTextureFile(ItemStack par1){
	if ( par1.itemID==mod_tutorial.TutorialHelmet.iconIndex|| par1.itemID==mod_tutorial.TutorialPlate.iconIndex||
			 par1.itemID==mod_tutorial.TutorialBoots.iconIndex){
		return "/armor/Tut_1.png";
	}if(par1.itemID==mod_tutorial.TutorialLegs.iconIndex){
		return "/armor/Tut_2.png";
	}return "/armor/Tut_1.png";
}	
}

 

It also refers to line 185 in my mod_tutorial(Main class file):

TutorialHelmet = new ItemTutorialHelmet(508,EnumArmorMaterial.BLUE, proxy.addArmor("Tut"),0).setItemName("TutHelm").setIconIndex(0).setCreativeTab(tabJVCraft);

 

If someone could please help I would be very happy. If you need any more information just ask and I will gladly give it to you. Thanks!

Link to comment
Share on other sites

 

cpw.mods.fml.common.LoaderException: java.lang.VerifyError: (class: tutorialtest/ItemTutorialHelmet, method: getArmorTextureFile signature: (Lur;)Ljava/lang/String;) Bad access to protected data

 

 

are you using 'protected' varible type?

if so change it to public.

Also, I should have you know that you are reading my signature.

Link to comment
Share on other sites

Ok duh. I don't need a java thing. Its just in the first post I had the class file for the ItemTutorialHelmet and he said check, when he could have just looked... I didn't know what he ment because nothing in my ItemTutorialHelmet said protected.. So no one knows how to fix this? Ive had this problem for a month now. I cant use my mod!! Please help!

Link to comment
Share on other sites

Ok I will update. Hopefully nothing modding wise had changed though! And here is my main mod file

 

Main mod file(mod_tutorial):

package tutorialtest;

import tutorial.client.ClientProxy.ClientProxy;
import tutorial.common.CommonProxy.CommonProxy;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.EnumToolMaterial;
import net.minecraft.item.Item;
import net.minecraft.item.ItemSword;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.registry.LanguageRegistry;	
import net.minecraft.src.ModLoader;	
import net.minecraftforge.client.MinecraftForgeClient;

@Mod(modid = "JV's ToolPack", name = "JV's ToolPack", version = "1.4.7")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)

public class mod_tutorial { 

//CreativeTabs
public static CreativeTabs tabJVCraft = new CreativeTabJVCraft(CreativeTabs.getNextID(), "tabJVCraft");

//Furnace
public static Block basicFurnace;
public static Block BasicCube;
public static final int basicFurnaceGUIid = 0;

//blue
public static Item TutorialHelmet;
public static Item TutorialPlate;
public static Item TutorialLegs;
public static Item TutorialBoots;
public static Item BlueIngot;
public static Item BlueDust;
public static Item BlueToolFragment;
public static Item BlueSword;
public static Item BluePickaxe;
public static Item BlueSpade;
public static Item BlueAxe;
public static Block BlueOre;
//yellow
public static Item YellowHelmet;
public static Item YellowPlate;
public static Item YellowLegs;
public static Item YellowBoots;
public static Item YellowToolFragment;
public static Item YellowIngot;
public static Item YellowDust;
public static Item YellowSword;
public static Item YellowPickaxe;
public static Item YellowSpade;
public static Item YellowAxe;
public static Block YellowOre;
//White/Silver
public static Item WhiteHelmet;
public static Item WhitePlate;
public static Item WhiteLegs;
public static Item WhiteBoots;
public static Item WhiteIngot;
public static Item SilverIngot;
public static Item WhitePowder;
public static Item SilverDust;
public static Block SilverOre;
public static Item WhiteSword;
public static Item WhitePickaxe;
public static Item WhiteSpade;
public static Item WhiteAxe;
public static Item WhiteToolFragment;
//red
public static Item RedHelmet;
public static Item RedPlate;
public static Item RedLegs;
public static Item RedBoots;
public static Item RedIngot;
public static Item RedToolFragment;
public static Item RedDust;
public static Item RedSword;
public static Item RedPickaxe;
public static Item RedSpade;
public static Item RedAxe;
public static Block RedOre;
//green
public static Item GreenHelmet;
public static Item GreenPlate;
public static Item GreenLegs;
public static Item GreenBoots;
public static Item GreenIngot;
public static Item GreenToolFragment;
public static Item GreenDust;
public static Item GreenSword;
public static Item GreenPickaxe;
public static Item GreenSpade;
public static Item GreenAxe;
public static Block GreenOre;
//Pink
public static Item PinkHelmet;
public static Item PinkPlate;
public static Item PinkLegs;
public static Item PinkBoots;
public static Item PinkIngot;
public static Item PinkToolFragment;
public static Item PinkDust;
public static Item PinkSword;
public static Item PinkPickaxe;
public static Item PinkSpade;
public static Item PinkAxe;
public static Block PinkOre;
//Purple
public static Item PurpleHelmet;
public static Item PurplePlate;
public static Item PurpleLegs;
public static Item PurpleBoots;
public static Item PurpleIngot;
public static Item PurpleToolFragment;
public static Item PurpleDust;
public static Item PurpleSword;
public static Item PurplePickaxe;
public static Item PurpleSpade;
public static Item PurpleAxe;
public static Block PurpleOre;
//Black
public static Item BlackHelmet;
public static Item BlackPlate;
public static Item BlackLegs;
public static Item BlackBoots;
public static Item BlackIngot;
public static Item BlackToolFragment;
public static Item BlackDust;
public static Item BlackSword;
public static Item BlackPickaxe;
public static Item BlackSpade;
public static Item BlackAxe;
public static Block BlackOre;
//Rainbow
public static Item RainbowHelmet;
public static Item RainbowPlate;
public static Item RainbowLegs;
public static Item RainbowBoots;
public static Item RainbowToolFragment;
public static Item RainbowIngot;
public static Item RainbowSword;
public static Item RainbowPickaxe;
public static Item RainbowSpade;
public static Item RainbowAxe;
public static Item RainbowHoe;
public static Item RainbowDust;



//Enum Materials
static EnumArmorMaterial TutorialEnumArmourMaterial = net.minecraftforge.common.EnumHelper.addArmorMaterial("tutorial", 24, new int[] { 2, 5, 3, 2 }, 16);


@SidedProxy(clientSide = "tutorial.client.ClientProxy.ClientProxy", serverSide = "tutorial.common.CommonProxy.CommonProxy")
public static CommonProxy proxy;
       


@Init
public void load(FMLInitializationEvent event){

MinecraftForgeClient.preloadTexture(ClientProxy.BLOCKS_PNG);
MinecraftForgeClient.preloadTexture(ClientProxy.ITEMS_PNG);
MinecraftForgeClient.preloadTexture(ClientProxy.FURNACE_PNG);


//Creative Tabs


//Furnaces
basicFurnace = new ModCustomBasicFurnace(1000, 1, false).setBlockName("BF");
BasicCube = new YellowOre(1001, .setHardness(3.0F).setResistance(3.0F).setBlockName("BasicCube").setCreativeTab(tabJVCraft);


//Blue
//Armor
TutorialHelmet = new ItemTutorialHelmet(508,EnumArmorMaterial.BLUE, proxy.addArmor("Tut"),0).setItemName("TutHelm").setIconIndex(0).setCreativeTab(tabJVCraft);
TutorialPlate = new ItemTutorialPlate(509,EnumArmorMaterial.BLUE, proxy.addArmor("Tut"),1).setItemName("TutPlate").setIconIndex(1).setCreativeTab(tabJVCraft);
TutorialLegs = new ItemTutorialLegs(510,EnumArmorMaterial.BLUE, proxy.addArmor("Tut"),2).setItemName("TutLeg").setIconIndex(2).setCreativeTab(tabJVCraft);
TutorialBoots = new ItemTutorialBoots(511,EnumArmorMaterial.BLUE, proxy.addArmor("Tut"),3).setItemName("TutBoot").setIconIndex(3).setCreativeTab(tabJVCraft);
//Items
BlueIngot = new YellowIngot(532).setItemName("BlueIngot").setIconIndex(24).setCreativeTab(tabJVCraft);
BlueToolFragment = new YellowToolFragment(533).setItemName("BlueToolFragment").setIconIndex(25).setCreativeTab(tabJVCraft);
BlueSword = new YellowSword(534, EnumToolMaterial.BLUE).setItemName("BlueSword").setIconIndex(26).setCreativeTab(tabJVCraft);
BluePickaxe = new YellowPickaxe(535, EnumToolMaterial.BLUE).setItemName("BluePickaxe").setIconIndex(27).setCreativeTab(tabJVCraft);
BlueSpade = new YellowSpade(536, EnumToolMaterial.BLUE).setItemName("BlueSpade").setIconIndex(28).setCreativeTab(tabJVCraft);
BlueAxe = new YellowAxe(537, EnumToolMaterial.BLUE).setItemName("BlueAxe").setIconIndex(29).setCreativeTab(tabJVCraft);
BlueDust = new YellowDust(538).setItemName("BlueDust").setIconIndex(30).setCreativeTab(tabJVCraft);
BlueOre = new YellowOre(539, 0).setHardness(3.0F).setResistance(3.0F).setBlockName("BlueOre").setCreativeTab(tabJVCraft);
//Yellow
YellowHelmet = new ItemYellowHelmet(512,EnumArmorMaterial.YELLOW, proxy.addArmor("Yellow"),0).setItemName("YellowHelm").setIconIndex(4).setCreativeTab(tabJVCraft);
YellowPlate = new ItemYellowPlate(513,EnumArmorMaterial.YELLOW, proxy.addArmor("Yellow"),1).setItemName("YellowPlate").setIconIndex(5).setCreativeTab(tabJVCraft);
YellowLegs = new ItemYellowLegs(514,EnumArmorMaterial.YELLOW, proxy.addArmor("Yellow"),2).setItemName("YellowLeg").setIconIndex(6).setCreativeTab(tabJVCraft);
YellowBoots = new ItemYellowBoots(515,EnumArmorMaterial.YELLOW, proxy.addArmor("Yellow"),3).setItemName("YellowBoot").setIconIndex(7).setCreativeTab(tabJVCraft);
YellowIngot = new YellowIngot(540).setItemName("YellowIngot").setIconIndex(31).setCreativeTab(tabJVCraft);
YellowToolFragment = new YellowToolFragment(541).setItemName("YellowToolFragment").setIconIndex(32).setCreativeTab(tabJVCraft);
YellowSword = new YellowSword(542, EnumToolMaterial.YELLOW).setItemName("YellowSword").setIconIndex(33).setCreativeTab(tabJVCraft);
YellowPickaxe = new YellowPickaxe(543, EnumToolMaterial.YELLOW).setItemName("YellowPickaxe").setIconIndex(34).setCreativeTab(tabJVCraft);
YellowSpade = new YellowSpade(544, EnumToolMaterial.YELLOW).setItemName("YellowSpade").setIconIndex(35).setCreativeTab(tabJVCraft);
YellowAxe = new YellowAxe(545, EnumToolMaterial.YELLOW).setItemName("YellowAxe").setIconIndex(36).setCreativeTab(tabJVCraft);
YellowDust = new YellowDust(546).setItemName("YellowDust").setIconIndex(37).setCreativeTab(tabJVCraft);
YellowOre = new YellowOre(547, 1).setHardness(3.0F).setResistance(3.0F).setBlockName("YellowOre").setCreativeTab(tabJVCraft);
//White
WhiteHelmet = new ItemWhiteHelmet(516, EnumArmorMaterial.DIAMOND, proxy.addArmor("White"),0).setItemName("WhiteHelm").setIconIndex(.setCreativeTab(tabJVCraft);
WhitePlate = new ItemWhitePlate(517,EnumArmorMaterial.DIAMOND, proxy.addArmor("White"),1).setItemName("WhitePlate").setIconIndex(9).setCreativeTab(tabJVCraft);
WhiteLegs = new ItemWhiteLegs(518,EnumArmorMaterial.DIAMOND, proxy.addArmor("White"),2).setItemName("WhiteLeg").setIconIndex(10).setCreativeTab(tabJVCraft);
WhiteBoots = new ItemWhiteBoots(519,EnumArmorMaterial.DIAMOND, proxy.addArmor("White"),3).setItemName("WhiteBoot").setIconIndex(11).setCreativeTab(tabJVCraft);
WhiteIngot = new YellowIngot(548).setItemName("WhiteIngot").setIconIndex(38).setCreativeTab(tabJVCraft);
WhiteToolFragment = new YellowToolFragment(555).setItemName("WhiteToolFragment").setIconIndex(39).setCreativeTab(tabJVCraft);
WhiteSword = new YellowSword(549, EnumToolMaterial.EMERALD).setItemName("WhiteSword").setIconIndex(40).setCreativeTab(tabJVCraft);
WhitePickaxe = new YellowPickaxe(556, EnumToolMaterial.EMERALD).setItemName("WhitePickaxe").setIconIndex(41).setCreativeTab(tabJVCraft);
WhiteSpade = new YellowSpade(550, EnumToolMaterial.EMERALD).setItemName("WhiteSpade").setIconIndex(42).setCreativeTab(tabJVCraft);
WhiteAxe = new YellowAxe(551, EnumToolMaterial.EMERALD).setItemName("WhiteAxe").setIconIndex(43).setCreativeTab(tabJVCraft);
SilverDust = new YellowDust(552).setItemName("SilverDust").setIconIndex(44).setCreativeTab(tabJVCraft);
SilverOre = new YellowOre(553, 2).setHardness(3.0F).setResistance(3.0F).setBlockName("WhiteOre").setCreativeTab(tabJVCraft);
WhitePowder = new YellowDust(554).setItemName("WhitePowder").setIconIndex(45).setCreativeTab(tabJVCraft);
SilverIngot = new YellowIngot(565).setItemName("SilverIngot").setIconIndex(53).setCreativeTab(tabJVCraft);
//Blue
RedHelmet = new ItemRedHelmet(520, EnumArmorMaterial.RED, proxy.addArmor("Red"),0).setItemName("RedHelm").setIconIndex(12).setCreativeTab(tabJVCraft);
RedPlate = new ItemRedPlate(521,EnumArmorMaterial.RED, proxy.addArmor("Red"),1).setItemName("RedPlate").setIconIndex(13).setCreativeTab(tabJVCraft);
RedLegs = new ItemRedLegs(522,EnumArmorMaterial.RED, proxy.addArmor("Red"),2).setItemName("RedLeg").setIconIndex(14).setCreativeTab(tabJVCraft);
RedBoots = new ItemRedBoots(523,EnumArmorMaterial.RED, proxy.addArmor("Red"),3).setItemName("RedBoot").setIconIndex(15).setCreativeTab(tabJVCraft);
RedIngot = new YellowIngot(564).setItemName("RedIngot").setIconIndex(46);
RedToolFragment = new YellowToolFragment(557).setItemName("RedToolFragment").setIconIndex(47).setCreativeTab(tabJVCraft);
RedSword = new YellowSword(558, EnumToolMaterial.RED).setItemName("RedSword").setIconIndex(48).setCreativeTab(tabJVCraft);
RedPickaxe = new YellowPickaxe(559, EnumToolMaterial.RED).setItemName("RedPickaxe").setIconIndex(49).setCreativeTab(tabJVCraft);
RedSpade = new YellowSpade(560, EnumToolMaterial.RED).setItemName("RedSpade").setIconIndex(50).setCreativeTab(tabJVCraft);
RedAxe = new YellowAxe(561, EnumToolMaterial.RED).setItemName("RedAxe").setIconIndex(51).setCreativeTab(tabJVCraft);
RedDust = new YellowDust(562).setItemName("RedDust").setIconIndex(52).setCreativeTab(tabJVCraft);
RedOre = new YellowOre(563, 3).setHardness(3.0F).setResistance(3.0F).setBlockName("RedOre").setCreativeTab(tabJVCraft);

//Green
GreenHelmet = new ItemGreenHelmet(524, EnumArmorMaterial.GREEN, proxy.addArmor("Green"),0).setItemName("GreenHelm").setIconIndex(16).setCreativeTab(tabJVCraft);
GreenPlate = new ItemGreenPlate(525,EnumArmorMaterial.GREEN, proxy.addArmor("Green"),1).setItemName("GreenPlate").setIconIndex(17).setCreativeTab(tabJVCraft);
GreenLegs = new ItemGreenLegs(526,EnumArmorMaterial.GREEN, proxy.addArmor("Green"),2).setItemName("GreenLeg").setIconIndex(18).setCreativeTab(tabJVCraft);
GreenBoots = new ItemGreenBoots(527,EnumArmorMaterial.GREEN, proxy.addArmor("Green"),3).setItemName("GreenBoot").setIconIndex(19).setCreativeTab(tabJVCraft);
GreenIngot = new YellowIngot(566).setItemName("GreenIngot").setIconIndex(54).setCreativeTab(tabJVCraft);
GreenToolFragment = new YellowToolFragment(567).setItemName("GreenToolFragment").setIconIndex(55).setCreativeTab(tabJVCraft);
GreenSword = new YellowSword(568, EnumToolMaterial.GREEN).setItemName("GreenSword").setIconIndex(56).setCreativeTab(tabJVCraft);
GreenPickaxe = new YellowPickaxe(569, EnumToolMaterial.GREEN).setItemName("GreenPickaxe").setIconIndex(57).setCreativeTab(tabJVCraft);
GreenSpade = new YellowSpade(570, EnumToolMaterial.GREEN).setItemName("GreenSpade").setIconIndex(58).setCreativeTab(tabJVCraft);
GreenAxe = new YellowAxe(571, EnumToolMaterial.GREEN).setItemName("GreenAxe").setIconIndex(59).setCreativeTab(tabJVCraft);
GreenDust = new YellowDust(572).setItemName("GreenDust").setIconIndex(60).setCreativeTab(tabJVCraft);
GreenOre = new YellowOre(573, 4).setHardness(3.0F).setResistance(3.0F).setBlockName("GreenOre").setCreativeTab(tabJVCraft);
//Pink
PinkHelmet = new ItemPinkHelmet(528, EnumArmorMaterial.PINK, proxy.addArmor("Pink"),0).setItemName("PinkHelm").setIconIndex(20).setCreativeTab(tabJVCraft);
PinkPlate = new ItemPinkPlate(529,EnumArmorMaterial.PINK, proxy.addArmor("Pink"),1).setItemName("PinkPlate").setIconIndex(21).setCreativeTab(tabJVCraft);
PinkLegs = new ItemPinkLegs(530,EnumArmorMaterial.PINK, proxy.addArmor("Pink"),2).setItemName("PinkLeg").setIconIndex(22).setCreativeTab(tabJVCraft);
PinkBoots = new ItemPinkBoots(531,EnumArmorMaterial.PINK, proxy.addArmor("Pink"),3).setItemName("PinkBoot").setIconIndex(23).setCreativeTab(tabJVCraft);
PinkIngot = new YellowIngot(574).setItemName("PinkIngot").setIconIndex(61).setCreativeTab(tabJVCraft);
PinkToolFragment = new YellowToolFragment(575).setItemName("PinkToolFragment").setIconIndex(62).setCreativeTab(tabJVCraft);
PinkSword = new YellowSword(576, EnumToolMaterial.PINK).setItemName("PinkSword").setIconIndex(63).setCreativeTab(tabJVCraft);
PinkPickaxe = new YellowPickaxe(577, EnumToolMaterial.PINK).setItemName("PinkPickaxe").setIconIndex(64).setCreativeTab(tabJVCraft);
PinkSpade = new YellowSpade(578, EnumToolMaterial.PINK).setItemName("PinkSpade").setIconIndex(65).setCreativeTab(tabJVCraft);
PinkAxe = new YellowAxe(579, EnumToolMaterial.PINK).setItemName("PinkAxe").setIconIndex(66).setCreativeTab(tabJVCraft);
PinkDust = new YellowDust(580).setItemName("PinkDust").setIconIndex(67).setCreativeTab(tabJVCraft);
PinkOre = new YellowOre(581, 5).setHardness(3.0F).setResistance(3.0F).setBlockName("PinkOre").setCreativeTab(tabJVCraft);
//Purple
PurpleHelmet = new ItemPurpleHelmet(590, EnumArmorMaterial.PURPLE, proxy.addArmor("Purple"),0).setItemName("PurpleHelm").setIconIndex(75).setCreativeTab(tabJVCraft);
PurplePlate = new ItemPurplePlate(591,EnumArmorMaterial.PURPLE, proxy.addArmor("Purple"),1).setItemName("PurplePlate").setIconIndex(76).setCreativeTab(tabJVCraft);
PurpleLegs = new ItemPurpleLegs(592,EnumArmorMaterial.PURPLE, proxy.addArmor("Purple"),2).setItemName("PurpleLeg").setIconIndex(77).setCreativeTab(tabJVCraft);
PurpleBoots = new ItemPurpleBoots(593,EnumArmorMaterial.PURPLE, proxy.addArmor("Purple"),3).setItemName("PurpleBoot").setIconIndex(78).setCreativeTab(tabJVCraft);
PurpleIngot = new YellowIngot(582).setItemName("PurpleIngot").setIconIndex(68).setCreativeTab(tabJVCraft);
PurpleToolFragment = new YellowToolFragment(583).setItemName("PurpleToolFragment").setIconIndex(69).setCreativeTab(tabJVCraft);
PurpleSword = new YellowSword(584, EnumToolMaterial.PURPLE).setItemName("PurpleSword").setIconIndex(70).setCreativeTab(tabJVCraft);
PurplePickaxe = new YellowPickaxe(585, EnumToolMaterial.PURPLE).setItemName("PurplePickaxe").setIconIndex(71).setCreativeTab(tabJVCraft);
PurpleSpade = new YellowSpade(586, EnumToolMaterial.PURPLE).setItemName("PurpleSpade").setIconIndex(72).setCreativeTab(tabJVCraft);
PurpleAxe = new YellowAxe(587, EnumToolMaterial.PURPLE).setItemName("PurpleAxe").setIconIndex(73).setCreativeTab(tabJVCraft);
PurpleDust = new YellowDust(588).setItemName("PurpleDust").setIconIndex(74).setCreativeTab(tabJVCraft);
PurpleOre = new YellowOre(589, 6).setHardness(3.0F).setResistance(3.0F).setBlockName("PurpleOre").setCreativeTab(tabJVCraft);
//Black
BlackHelmet = new ItemBlackHelmet(602, EnumArmorMaterial.BLACK, proxy.addArmor("Black"),0).setItemName("BlackHelm").setIconIndex(79).setCreativeTab(tabJVCraft);
BlackPlate = new ItemBlackPlate(603,EnumArmorMaterial.BLACK, proxy.addArmor("Black"),1).setItemName("BlackPlate").setIconIndex(80).setCreativeTab(tabJVCraft);
BlackLegs = new ItemBlackLegs(604,EnumArmorMaterial.BLACK, proxy.addArmor("Black"),2).setItemName("BlackLeg").setIconIndex(81).setCreativeTab(tabJVCraft);
BlackBoots = new ItemBlackBoots(605,EnumArmorMaterial.BLACK, proxy.addArmor("Black"),3).setItemName("BlackBoot").setIconIndex(82).setCreativeTab(tabJVCraft);
BlackIngot = new YellowIngot(594).setItemName("BlackIngot").setIconIndex(83).setCreativeTab(tabJVCraft);
BlackToolFragment = new YellowToolFragment(595).setItemName("BlackToolFragment").setIconIndex(84).setCreativeTab(tabJVCraft);
BlackSword = new YellowSword(596, EnumToolMaterial.BLACK).setItemName("BlackSword").setIconIndex(85).setCreativeTab(tabJVCraft);
BlackPickaxe = new YellowPickaxe(597, EnumToolMaterial.BLACK).setItemName("BlackPickaxe").setIconIndex(86).setCreativeTab(tabJVCraft);
BlackSpade = new YellowSpade(598, EnumToolMaterial.BLACK).setItemName("BlackSpade").setIconIndex(87).setCreativeTab(tabJVCraft);
BlackAxe = new YellowAxe(599, EnumToolMaterial.BLACK).setItemName("BlackAxe").setIconIndex(88).setCreativeTab(tabJVCraft);
BlackDust = new YellowDust(600).setItemName("BlackDust").setIconIndex(89).setCreativeTab(tabJVCraft);
BlackOre = new YellowOre(601, 7).setHardness(3.0F).setResistance(3.0F).setBlockName("BlackOre").setCreativeTab(tabJVCraft);
//Rainbow
RainbowHelmet = new ItemRainbowHelmet(616, EnumArmorMaterial.RAINBOW, proxy.addArmor("Rainbow"),0).setItemName("RainbowHelm").setIconIndex(97).setCreativeTab(tabJVCraft);
RainbowPlate = new ItemRainbowPlate(606,EnumArmorMaterial.RAINBOW, proxy.addArmor("Rainbow"),1).setItemName("RainbowPlate").setIconIndex(98).setCreativeTab(tabJVCraft);
RainbowLegs = new ItemRainbowLegs(607,EnumArmorMaterial.RAINBOW, proxy.addArmor("Rainbow"),2).setItemName("RainbowLeg").setIconIndex(99).setCreativeTab(tabJVCraft);
RainbowBoots = new ItemRainbowBoots(608,EnumArmorMaterial.RAINBOW, proxy.addArmor("Rainbow"),3).setItemName("RainbowBoot").setIconIndex(100).setCreativeTab(tabJVCraft);
RainbowIngot = new YellowIngot(609).setItemName("RainbowIngot").setIconIndex(90).setCreativeTab(tabJVCraft);
RainbowToolFragment = new YellowToolFragment(610).setItemName("RainbowToolFragment").setIconIndex(91).setCreativeTab(tabJVCraft);
RainbowSword = new YellowSword(611, EnumToolMaterial.RAINBOW).setItemName("RainbowSword").setIconIndex(92).setCreativeTab(tabJVCraft);
RainbowPickaxe = new YellowPickaxe(612, EnumToolMaterial.RAINBOW).setItemName("RainbowPickaxe").setIconIndex(93).setCreativeTab(tabJVCraft);
RainbowSpade = new YellowSpade(613, EnumToolMaterial.RAINBOW).setItemName("RainbowSpade").setIconIndex(94).setCreativeTab(tabJVCraft);
RainbowHoe = new RainbowHoe(617, EnumToolMaterial.RAINBOW).setItemName("RainbowHoe").setIconIndex(101).setCreativeTab(tabJVCraft);
RainbowAxe = new YellowAxe(614, EnumToolMaterial.RAINBOW).setItemName("RainbowAxe").setIconIndex(95).setCreativeTab(tabJVCraft);
RainbowDust = new YellowDust(615).setItemName("RainbowDust").setIconIndex(96).setCreativeTab(tabJVCraft);


//Register Blocks
GameRegistry.registerBlock(BlueOre, "BlueOre");
GameRegistry.registerBlock(YellowOre, "YellowOre");
GameRegistry.registerBlock(SilverOre, "SilverOre");
GameRegistry.registerBlock(RedOre, "RedOre");
GameRegistry.registerBlock(GreenOre, "GreenOre");
GameRegistry.registerBlock(PinkOre, "PinkOre");
GameRegistry.registerBlock(basicFurnace, "basicFurnace");
GameRegistry.registerBlock(PurpleOre, "PurpleOre");
GameRegistry.registerBlock(BlackOre, "BlackOre");
GameRegistry.registerBlock(BasicCube, "BasicCube");

//Smelting Ore


  
 ModLoader.addSmelting(YellowOre.blockID, new ItemStack(mod_tutorial.YellowIngot, 1));                        //(YellowOre.blockID, new ItemStack(mod_tutorial.YellowIngot, 1), 0.35);
 ModLoader.addSmelting(mod_tutorial.YellowIngot.itemID, new ItemStack(mod_tutorial.YellowDust, 2));   
 ModLoader.addSmelting(mod_tutorial.SilverIngot.itemID, new ItemStack(mod_tutorial.SilverDust, 1));
 ModLoader.addSmelting(SilverOre.blockID, new ItemStack(SilverIngot, 1));
 ModLoader.addSmelting(mod_tutorial.WhitePowder.itemID, new ItemStack(WhiteIngot, 1));
 ModLoader.addSmelting(BlueOre.blockID, new ItemStack(BlueIngot, 1));
 ModLoader.addSmelting(mod_tutorial.BlueIngot.itemID, new ItemStack(mod_tutorial.BlueDust, 1));
 ModLoader.addSmelting(RedOre.blockID, new ItemStack(RedIngot, 1));
 ModLoader.addSmelting(mod_tutorial.RedIngot.itemID, new ItemStack(mod_tutorial.RedDust, 1));
 ModLoader.addSmelting(GreenOre.blockID, new ItemStack(GreenIngot, 1));
 ModLoader.addSmelting(mod_tutorial.GreenIngot.itemID, new ItemStack(mod_tutorial.GreenDust, 1));
 ModLoader.addSmelting(PinkOre.blockID, new ItemStack(PinkIngot, 1));
 ModLoader.addSmelting(mod_tutorial.PinkIngot.itemID, new ItemStack(PinkDust,1 ));
 ModLoader.addSmelting(PurpleOre.blockID, new ItemStack(PurpleIngot, 1));
 ModLoader.addSmelting(mod_tutorial.PurpleIngot.itemID, new ItemStack(PurpleDust, 1));
 ModLoader.addSmelting(BlackOre.blockID, new ItemStack(BlackIngot, 1));
 ModLoader.addSmelting(mod_tutorial.BlackIngot.itemID, new ItemStack(BlackDust, 1));
 ModLoader.addSmelting(mod_tutorial.RainbowIngot.itemID, new ItemStack(RainbowDust, 1));

//Furnace Stuff
 GameRegistry.addRecipe(new ItemStack(basicFurnace,1), new Object[]{
	 " X ", "XTX", " F ", 'X', Item.redstone, 'F', Block.stoneOvenIdle,'T',BasicCube
	});

 GameRegistry.addRecipe(new ItemStack(BasicCube,1), new Object[]{
	 "YBP", "W E", "LRG", 'Y',YellowIngot, 'B', BlackIngot, 'P', PurpleIngot, 'W', WhiteIngot, 'E', PinkIngot, 'L', BlueIngot, 'R', RedIngot, 'G', GreenIngot
	});


//blue
GameRegistry.addRecipe(new ItemStack(mod_tutorial.TutorialHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',BlueDust, 'X',WhiteHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.TutorialPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',BlueDust, 'X', WhitePlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.TutorialLegs,1), new Object[]{
	"TTT","TXT","T T",'T',BlueDust, 'X', WhiteLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.TutorialBoots,1), new Object[]{
	"   ","TXT","T T",'T',BlueDust, 'X', WhiteBoots
});
//Yellow
GameRegistry.addRecipe(new ItemStack(mod_tutorial.YellowHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',YellowDust, 'X',Item.helmetSteel
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.YellowPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',YellowDust, 'X', Item.plateSteel
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.YellowLegs,1), new Object[]{
	"TTT","TXT","T T",'T',YellowDust, 'X', Item.legsSteel
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.YellowBoots,1), new Object[]{
	"   ","TXT","T T",'T',YellowDust, 'X', Item.bootsSteel
});
//white
GameRegistry.addRecipe(new ItemStack(mod_tutorial.WhiteHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',WhitePowder, 'X',YellowHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.WhitePlate,1), new Object[]{
	"TXT","TTT","TTT",'T',WhitePowder, 'X', YellowPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.WhiteLegs,1), new Object[]{
	"TTT","TXT","T T",'T',WhitePowder, 'X', YellowLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.WhiteBoots,1), new Object[]{
	"   ","TXT","T T",'T',WhitePowder, 'X', YellowBoots
});
//red
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RedHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',RedDust, 'X',TutorialHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RedPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',RedDust, 'X', TutorialPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RedLegs,1), new Object[]{
	"TTT","TXT","T T",'T',RedDust, 'X', TutorialLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RedBoots,1), new Object[]{
	"   ","TXT","T T",'T',RedDust, 'X', TutorialBoots
});
//green
GameRegistry.addRecipe(new ItemStack(mod_tutorial.GreenHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',GreenDust, 'X', RedHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.GreenPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',GreenDust, 'X', RedPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.GreenLegs,1), new Object[]{
	"TTT","TXT","T T",'T',GreenDust, 'X', RedLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.GreenBoots,1), new Object[]{
	"   ","TXT","T T",'T',GreenDust, 'X', RedBoots
});
//pink
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PinkHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',PinkDust, 'X',GreenHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PinkPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',PinkDust, 'X', GreenPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PinkLegs,1), new Object[]{
	"TTT","TXT","T T",'T',PinkDust, 'X', GreenLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PinkBoots,1), new Object[]{
	"   ","TXT","T T",'T',PinkDust, 'X', GreenBoots
});
//purple
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PurpleHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',PurpleDust, 'X',PinkHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PurplePlate,1), new Object[]{
	"TXT","TTT","TTT",'T',PurpleDust, 'X', PinkPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PurpleLegs,1), new Object[]{
	"TTT","TXT","T T",'T',PurpleDust, 'X', PinkLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.PurpleBoots,1), new Object[]{
	"   ","TXT","T T",'T',PurpleDust, 'X', PinkBoots
});
//black
GameRegistry.addRecipe(new ItemStack(mod_tutorial.BlackHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',BlackDust, 'X',PurpleHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.BlackPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',BlackDust, 'X', PurplePlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.BlackLegs,1), new Object[]{
	"TTT","TXT","T T",'T',BlackDust, 'X', PurpleLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.BlackBoots,1), new Object[]{
	"   ","TXT","T T",'T',BlackDust, 'X', PurpleBoots
});
//Rainbow
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RainbowHelmet,1), new Object[]{
	"TTT","TXT","   ",'T',RainbowDust, 'X',BlackHelmet
});
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RainbowPlate,1), new Object[]{
	"TXT","TTT","TTT",'T',RainbowDust, 'X', BlackPlate
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RainbowLegs,1), new Object[]{
	"TTT","TXT","T T",'T',RainbowDust, 'X', BlackLegs
});		
GameRegistry.addRecipe(new ItemStack(mod_tutorial.RainbowBoots,1), new Object[]{
	"   ","TXT","T T",'T',RainbowDust, 'X', BlackBoots
});

  //Sword out of YellowIngot
 GameRegistry.addRecipe(new ItemStack(YellowSword, 1), new Object[]{
" * ", " * ", " X ",
'X', Item.swordSteel, '*', mod_tutorial.YellowToolFragment
});

 //Pickaxe out of YellowIngot
 GameRegistry.addRecipe(new ItemStack(YellowPickaxe, 1), new Object[]{
 " * ", " X ",
 'X', Item.pickaxeSteel, '*', mod_tutorial.YellowToolFragment
 });

 //Axe out of YellowIngot
 GameRegistry.addRecipe(new ItemStack(YellowAxe, 1), new Object[]{
 "** ", "*X ",
 'X', Item.axeSteel, '*', mod_tutorial.YellowToolFragment
 });

 //Spade out of Yellow Ingot
 GameRegistry.addRecipe(new ItemStack(YellowSpade), new Object[]{
 " * ", " X ",
 'X', Item.shovelSteel, '*', mod_tutorial.YellowToolFragment
 });

 //Yellow Tool Fragment
 GameRegistry.addRecipe(new ItemStack(YellowToolFragment, 1), new Object[]{
 "***", " * ",
 '*', mod_tutorial.YellowIngot
 });

 //WHITE

 //WhitePowder out of Dust
 GameRegistry.addRecipe(new ItemStack(WhitePowder), new Object[]{
 "***", "*X*", "***",
 '*', mod_tutorial.YellowDust, 'X', mod_tutorial.SilverDust
 });

 //Sword out of White Ingot
  GameRegistry.addRecipe(new ItemStack(WhiteSword, 1), new Object[]{
  " * ", " X ",
  'X', YellowSword, '*', mod_tutorial.WhiteToolFragment
  });
  
  //Yellow out of White Ingot
  GameRegistry.addRecipe(new ItemStack(WhitePickaxe, 1), new Object[]{
  " * ", " X ",
  'X', YellowPickaxe, '*', mod_tutorial.WhiteToolFragment
  });
  
  //Axe out of White Ingot
  GameRegistry.addRecipe(new ItemStack(WhiteAxe, 1), new Object[]{
  " * ", " X ",
  'X', YellowAxe, '*', mod_tutorial.WhiteToolFragment
  });

  //Spade out of White Ingot
  GameRegistry.addRecipe(new ItemStack(WhiteSpade, 1), new Object[]{
  " * ", " X ",
  'X', YellowSpade, '*', mod_tutorial.WhiteToolFragment
  });
  
  //White Tool Fragment
  GameRegistry.addRecipe(new ItemStack(WhiteToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.WhiteIngot
  });
  
  //BLUE
  
  //Sword out of Blue Ingot
  GameRegistry.addRecipe(new ItemStack(BlueSword, 1), new Object[]{
  " * ", " X ",
  'X', WhiteSword, '*', mod_tutorial.BlueToolFragment
  });
  
  //Yellow out of Blue Ingot
  GameRegistry.addRecipe(new ItemStack(BluePickaxe, 1), new Object[]{
  " * ", " X ",
  'X', WhitePickaxe, '*', mod_tutorial.BlueToolFragment
  });

  //Spade out of Blue Ingot
  GameRegistry.addRecipe(new ItemStack(BlueSpade, 1), new Object[]{
  " * ", " X ",
  'X', WhiteSpade, '*', mod_tutorial.BlueToolFragment
  });;

  //Axe out of Blue Ingot
  GameRegistry.addRecipe(new ItemStack(BlueAxe, 1), new Object[]{
  " * ", " X ",
  'X', WhiteAxe, '*', mod_tutorial.BlueToolFragment
  });

	  
  //Blue Tool Fragment
  GameRegistry.addRecipe(new ItemStack(BlueToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.BlueIngot
  });
	  
  
	  
	  
  //RED  
	  
  //Axe out of Red Ingot
  GameRegistry.addRecipe(new ItemStack(RedAxe, 1), new Object[]{
  " * ", " X ",
  'X', BlueAxe, '*', mod_tutorial.RedToolFragment
  });  

  //Yellow out of Red Ingot
  GameRegistry.addRecipe(new ItemStack(RedPickaxe, 1), new Object[]{
  " * ", " X ",
  'X', BluePickaxe, '*', mod_tutorial.RedToolFragment
  });  
  
  //Sword out of Red Ingot
  GameRegistry.addRecipe(new ItemStack(RedSword, 1), new Object[]{
  " * ", " X ",
  'X', BlueSword, '*', mod_tutorial.RedToolFragment
  }); 
  
  
  //Spade out of Red Ingot
  GameRegistry.addRecipe(new ItemStack(RedSpade, 1), new Object[]{
  " * ", " X ",
  'X', BlueSpade, '*', mod_tutorial.RedToolFragment
  });
  
  
  //Red Tool Fragment
  GameRegistry.addRecipe(new ItemStack(RedToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.RedIngot
  });
  
  //Green
  
  //Axe out of Green Ingot
  GameRegistry.addRecipe(new ItemStack(GreenAxe, 1), new Object[]{
  " * ", " X ",
  'X', RedAxe, '*', mod_tutorial.GreenToolFragment
  });  

  //Yellow out of Green Ingot
  GameRegistry.addRecipe(new ItemStack(GreenPickaxe, 1), new Object[]{
  " * ", " X ",
  'X', RedPickaxe, '*', mod_tutorial.GreenToolFragment
  });  
  
  //Sword out of Green Ingot
  GameRegistry.addRecipe(new ItemStack(GreenSword, 1), new Object[]{
  " * ", " X ",
  'X', RedSword, '*', mod_tutorial.GreenToolFragment
  }); 
  
  
  //Spade out of Green Ingot
  GameRegistry.addRecipe(new ItemStack(GreenSpade, 1), new Object[]{
  " * ", " X ",
  'X', RedSpade, '*', mod_tutorial.GreenToolFragment
  });
  
  
  //Green Tool Fragment
  GameRegistry.addRecipe(new ItemStack(GreenToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.GreenIngot
  });
  
  //Pink
  
  //Axe out of Pink Ingot
  GameRegistry.addRecipe(new ItemStack(PinkAxe, 1), new Object[]{
  " * ", " X ",
  'X', GreenAxe, '*', mod_tutorial.PinkToolFragment
  });  

  //Yellow out of Pink Ingot
  GameRegistry.addRecipe(new ItemStack(PinkPickaxe, 1), new Object[]{
  " * ", " X ",
  'X', GreenPickaxe, '*', mod_tutorial.PinkToolFragment
  });  
  
  //Sword out of Pink Ingot
  GameRegistry.addRecipe(new ItemStack(PinkSword, 1), new Object[]{
  " * ", " X ",
  'X', GreenSword, '*', mod_tutorial.PinkToolFragment
  }); 
  
  
  //Spade out of Pink Ingot
  GameRegistry.addRecipe(new ItemStack(PinkSpade, 1), new Object[]{
  " * ", " X ",
  'X', GreenSpade, '*', mod_tutorial.PinkToolFragment
  });
  
  
  //Pink Tool Fragment
  GameRegistry.addRecipe(new ItemStack(PinkToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.PinkIngot
  });
  
  
  
  //Purple
  
  //Axe out of Purple Ingot
  GameRegistry.addRecipe(new ItemStack(PurpleAxe, 1), new Object[]{
  " * ", " X ",
  'X', PinkAxe, '*', mod_tutorial.PurpleToolFragment
  });  

  //Yellow out of Purple Ingot
  GameRegistry.addRecipe(new ItemStack(PurplePickaxe, 1), new Object[]{
  " * ", " X ",
  'X', PinkPickaxe, '*', mod_tutorial.PurpleToolFragment
  });  
  
  //Sword out of Purple Ingot
  GameRegistry.addRecipe(new ItemStack(PurpleSword, 1), new Object[]{
  " * ", " X ",
  'X', PinkSword, '*', mod_tutorial.PurpleToolFragment
  }); 
  
  
  //Spade out of Purple Ingot
  GameRegistry.addRecipe(new ItemStack(PurpleSpade, 1), new Object[]{
  " * ", " X ",
  'X', PinkSpade, '*', mod_tutorial.PurpleToolFragment
  });
  
  
  //Purple Tool Fragment
  GameRegistry.addRecipe(new ItemStack(PurpleToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.PurpleIngot
  });
  
  //Black
  
  //Axe out of Black Ingot
  GameRegistry.addRecipe(new ItemStack(BlackAxe, 1), new Object[]{
  " * ", " X ",
  'X', PurpleAxe, '*', mod_tutorial.BlackToolFragment
  });  

  //Yellow out of Black Ingot
  GameRegistry.addRecipe(new ItemStack(BlackPickaxe, 1), new Object[]{
  " * ", " X ",
  'X', PurplePickaxe, '*', mod_tutorial.BlackToolFragment
  });  
  
  //Sword out of Black Ingot
  GameRegistry.addRecipe(new ItemStack(BlackSword, 1), new Object[]{
  " * ", " X ",
  'X', PurpleSword, '*', mod_tutorial.BlackToolFragment
  }); 
  
  
  //Spade out of Black Ingot
  GameRegistry.addRecipe(new ItemStack(BlackSpade, 1), new Object[]{
  " * ", " X ",
  'X', PurpleSpade, '*', mod_tutorial.BlackToolFragment
  });
  
  
  //Black Tool Fragment
  GameRegistry.addRecipe(new ItemStack(BlackToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.BlackIngot
  });
  
  //Rainbow
  
  //Axe out of Rainbow Ingot
  GameRegistry.addRecipe(new ItemStack(RainbowAxe, 1), new Object[]{
  " * ", " X ",
  'X', BlackAxe, '*', mod_tutorial.RainbowToolFragment
  });  

  //Yellow out of Rainbow Ingot
  GameRegistry.addRecipe(new ItemStack(RainbowPickaxe, 1), new Object[]{
  " * ", " X ",
  'X', BlackPickaxe, '*', mod_tutorial.RainbowToolFragment
  });  
  
  //Sword out of Rainbow Ingot
  GameRegistry.addRecipe(new ItemStack(RainbowSword, 1), new Object[]{
  " * ", " X ",
  'X', BlackSword, '*', mod_tutorial.RainbowToolFragment
  }); 
  
  
  //Spade out of Rainbow Ingot
  GameRegistry.addRecipe(new ItemStack(RainbowSpade, 1), new Object[]{
  " * ", " X ",
  'X', BlackSpade, '*', mod_tutorial.RainbowToolFragment
  });
  
  
  //Rainbow Tool Fragment
  GameRegistry.addRecipe(new ItemStack(RainbowToolFragment, 1), new Object[]{
  "***", " * ",
  '*', mod_tutorial.RainbowIngot
  });




//furnace
LanguageRegistry.addName(basicFurnace, "Basic Furnace");
LanguageRegistry.addName(BasicCube, "Basic Cube");
//Blue
LanguageRegistry.addName(TutorialHelmet, "Blue Helmet");
LanguageRegistry.addName(TutorialPlate, "Blue ChestPlate");
LanguageRegistry.addName(TutorialLegs, "Blue Leggings");
LanguageRegistry.addName(TutorialBoots, "Blue Boots");
LanguageRegistry.addName(BlueIngot, "Blue Ingot");
LanguageRegistry.addName(BlueToolFragment, "Blue-Tool-Fragment");
LanguageRegistry.addName(BlueSword, "Blue Sword");
LanguageRegistry.addName(BluePickaxe, "Blue Pickaxe");
LanguageRegistry.addName(BlueSpade, "Blue Spade");
LanguageRegistry.addName(BlueAxe, "Blue Axe");
LanguageRegistry.addName(BlueDust, "Blue Dust");
LanguageRegistry.addName(BlueOre, "Blue Ore");
//Yellow
LanguageRegistry.addName(YellowHelmet, "Orange Helmet");
LanguageRegistry.addName(YellowPlate, "Orange ChestPlate");
LanguageRegistry.addName(YellowLegs, "Orange Leggings");
LanguageRegistry.addName(YellowBoots, "Orange Boots");
LanguageRegistry.addName(YellowIngot, "Orange Ingot");
LanguageRegistry.addName(YellowToolFragment, "Orange-Tool-Fragment");
LanguageRegistry.addName(YellowSword, "Orange Sword");
LanguageRegistry.addName(YellowPickaxe, "Orange Pickaxe");
LanguageRegistry.addName(YellowSpade, "Orange Spade");
LanguageRegistry.addName(YellowAxe, "Orange Axe");
LanguageRegistry.addName(YellowDust, "Orange Dust");
LanguageRegistry.addName(YellowOre, "Orange Ore");
//White
LanguageRegistry.addName(WhiteHelmet, "White Helmet");
LanguageRegistry.addName(WhitePlate, "White ChestPlate");
LanguageRegistry.addName(WhiteLegs, "White Leggings");
LanguageRegistry.addName(WhiteBoots, "White Boots");
LanguageRegistry.addName(WhiteIngot, "White Ingot");
LanguageRegistry.addName(WhiteToolFragment, "White-Tool-Fragment");
LanguageRegistry.addName(WhiteSword, "White Sword");
LanguageRegistry.addName(WhitePickaxe, "White Pickaxe");
LanguageRegistry.addName(WhiteSpade, "White Spade");
LanguageRegistry.addName(WhiteAxe, "White Axe");
LanguageRegistry.addName(SilverDust, "Silver Dust");
LanguageRegistry.addName(SilverOre, "Silver Ore");
LanguageRegistry.addName(WhitePowder, "White Powder");
LanguageRegistry.addName(SilverIngot, "SilverIngot");
//Red
LanguageRegistry.addName(RedHelmet, "Red Helmet");
LanguageRegistry.addName(RedPlate, "Red ChestPlate");
LanguageRegistry.addName(RedLegs, "Red Leggings");
LanguageRegistry.addName(RedBoots, "Red Boots");
LanguageRegistry.addName(RedToolFragment, "Red-Tool-Fragment");
LanguageRegistry.addName(RedSword, "Red Sword");
LanguageRegistry.addName(RedPickaxe, "Red Pickaxe");
LanguageRegistry.addName(RedSpade, "Red Spade");
LanguageRegistry.addName(RedAxe, "Red Axe");
LanguageRegistry.addName(RedDust, "Red Dust");
LanguageRegistry.addName(RedOre, "Red Ore");
LanguageRegistry.addName(RedIngot, "Red Ingot");
//Green
LanguageRegistry.addName(GreenHelmet, "Green Helmet");
LanguageRegistry.addName(GreenPlate, "Green ChestPlate");
LanguageRegistry.addName(GreenLegs, "Green Leggings");
LanguageRegistry.addName(GreenBoots, "Green Boots");
LanguageRegistry.addName(GreenToolFragment, "Green-Tool-Fragment");
LanguageRegistry.addName(GreenSword, "Green Sword");
LanguageRegistry.addName(GreenPickaxe, "Green Pickaxe");
LanguageRegistry.addName(GreenSpade, "Green Spade");
LanguageRegistry.addName(GreenAxe, "Green Axe");
LanguageRegistry.addName(GreenDust, "Green Dust");
LanguageRegistry.addName(GreenOre, "Green Ore");
LanguageRegistry.addName(GreenIngot, "Green Ingot");
//Pink
LanguageRegistry.addName(PinkHelmet, "Pink Helmet");
LanguageRegistry.addName(PinkPlate, "Pink ChestPlate");
LanguageRegistry.addName(PinkLegs, "Pink Leggings");
LanguageRegistry.addName(PinkBoots, "Pink Boots");
LanguageRegistry.addName(PinkToolFragment, "Pink-Tool-Fragment");
LanguageRegistry.addName(PinkSword, "Pink Sword");
LanguageRegistry.addName(PinkPickaxe, "Pink Pickaxe");
LanguageRegistry.addName(PinkSpade, "Pink Spade");
LanguageRegistry.addName(PinkAxe, "Pink Axe");
LanguageRegistry.addName(PinkDust, "Pink Dust");
LanguageRegistry.addName(PinkOre, "Pink Ore");
LanguageRegistry.addName(PinkIngot, "Pink Ingot");
//Purple
LanguageRegistry.addName(PurpleHelmet, "Purple Helmet");
LanguageRegistry.addName(PurplePlate, "Purple ChestPlate");
LanguageRegistry.addName(PurpleLegs, "Purple Leggings");
LanguageRegistry.addName(PurpleBoots, "Purple Boots");
LanguageRegistry.addName(PurpleToolFragment, "Purple-Tool-Fragment");
LanguageRegistry.addName(PurpleSword, "Purple Sword");
LanguageRegistry.addName(PurplePickaxe, "Purple Pickaxe");
LanguageRegistry.addName(PurpleSpade, "Purple Spade");
LanguageRegistry.addName(PurpleAxe, "Purple Axe");
LanguageRegistry.addName(PurpleDust, "Purple Dust");
LanguageRegistry.addName(PurpleOre, "Purple Ore");
LanguageRegistry.addName(PurpleIngot, "Purple Ingot");
//Black
LanguageRegistry.addName(BlackHelmet, "Black Helmet");
LanguageRegistry.addName(BlackPlate, "Black ChestPlate");
LanguageRegistry.addName(BlackLegs, "Black Leggings");
LanguageRegistry.addName(BlackBoots, "Black Boots");
LanguageRegistry.addName(BlackToolFragment, "Black-Tool-Fragment");
LanguageRegistry.addName(BlackSword, "Black Sword");
LanguageRegistry.addName(BlackPickaxe, "Black Pickaxe");
LanguageRegistry.addName(BlackSpade, "Black Spade");
LanguageRegistry.addName(BlackAxe, "Black Axe");
LanguageRegistry.addName(BlackDust, "Black Dust");
LanguageRegistry.addName(BlackOre, "Black Ore");
LanguageRegistry.addName(BlackIngot, "Black Ingot");
//Rainbow
LanguageRegistry.addName(RainbowHelmet, "Rainbow Helmet");
LanguageRegistry.addName(RainbowPlate, "Rainbow ChestPlate");
LanguageRegistry.addName(RainbowLegs, "Rainbow Leggings");
LanguageRegistry.addName(RainbowBoots, "Rainbow Boots");
LanguageRegistry.addName(RainbowToolFragment, "Rainbow-Tool-Fragment");
LanguageRegistry.addName(RainbowSword, "Rainbow Sword");
LanguageRegistry.addName(RainbowPickaxe, "Rainbow Pickaxe");
LanguageRegistry.addName(RainbowSpade, "Rainbow Spade");
LanguageRegistry.addName(RainbowAxe, "Rainbow Axe");
LanguageRegistry.addName(RainbowDust, "Rainbow Dust");
LanguageRegistry.addName(RainbowIngot, "Rainbow Ingot");
LanguageRegistry.addName(RainbowHoe, "Rainbow Hoe");


//Ore Generation
GameRegistry.registerWorldGenerator(new OreWorldGen());

}
}





 

Also please don't give grief on some things. I know I shouldn't hard code, I know I should have the enums set not coded in. Anyways there it is. Hope you can help. Thanks!

Link to comment
Share on other sites

Alright well if you could help me out with the next problem that would be great. In every armor class and theres A BUNCH in my mod, I have to re-script them and im not positively sure how yet. Ive figured out everything except that. Here is the script I need to re-write because the icon-Index doesn't work.

 

Script From Armor Class(Random Red Helmet Class):

package tutorialtest;

import tutorial.client.ClientProxy.ClientProxy;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.IArmorTextureProvider;

public class ItemRedHelmet extends ItemArmor implements IArmorTextureProvider{

public ItemRedHelmet(int par1,	EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4) {
	super(par1, par2EnumArmorMaterial, par3, par4);

}

public String getTextureFile(){
	return ClientProxy.ITEMS_PNG;

}

public String getArmorTextureFile(ItemStack par1){
	if ( par1.itemID==mod_tutorial.RedHelmet.iconIndex|| par1.itemID==mod_tutorial.RedPlate.iconIndex||
			 par1.itemID==mod_tutorial.RedBoots.iconIndex){
		return "/armor/Red_1.png";
	}if(par1.itemID==mod_tutorial.RedLegs.iconIndex){
		return "/armor/Red_2.png";
	}return "/armor/Red_1.png";
}




}

 

Im not sure how to recode that, but if I figure it out my mod is good to go!!! I could really use your help! Thanks!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Error: java.lang.NullPointerException: Cannot invoke "me.codexadrian.tempad.TempadClientConfig.renderBlur()" because the return value of "me.codexadrian.tempad.TempadClient.getClientConfig()" is null I keep having this error while trying to launch a modpack through the forge modloader, any suggestions? https://docs.google.com/document/d/1CRKUoSiu2e_mDvDTVYpIA5wqD3w-BsCycxBu1_vQ4OA/edit?usp=sharing Crash Report ^^^^
    • I'm trying to start a server with the latest installer, but running the run.bat file doesn't generate new files. It shows the following in the cmd prompt.
    • One of my players is suddenly unable to join a locally hosted MC Eternal server. We have been playing on this server for about 2-3 weeks now. I have tried erasing his player files and his reputation file, and now it just coughs up this and kicks him out: [User Authenticator #5/INFO] [minecraft/NetHandlerLoginServer]: UUID of player EthosTheGod is 7692d8db-02c3-424f-a4ab-0e4e259b106b [20:25:36] [User Authenticator #4/INFO] [minecraft/NetHandlerLoginServer]: UUID of player EthosTheGod is 7692d8db-02c3-424f-a4ab-0e4e259b106b [20:29:35] [Server thread/WARN] [minecraft/MinecraftServer]: Can't keep up! Did the system time change, or is the server overloaded? Running 575849ms behind, skipping 11516 tick(s) [20:29:35] [Server thread/INFO] [minecraft/NetHandlerLoginServer]: com.mojang.authlib.GameProfile@4a6c63f1[id=7692d8db-02c3-424f-a4ab-0e4e259b106b,name=EthosTheGod,properties={textures=[com.mojang.authlib.properties.Property@241ea89e]},legacy=false] (/IP.ADDRESS) lost connection: Disconnected [20:29:35] [Server thread/INFO] [minecraft/NetHandlerLoginServer]: com.mojang.authlib.GameProfile@6ab6c661[id=7692d8db-02c3-424f-a4ab-0e4e259b106b,name=EthosTheGod,properties={textures=[com.mojang.authlib.properties.Property@7f19aae3]},legacy=false] (/IP.ADDRESS) lost connection: Disconnected It just says "connection timed out" on his end. Any ideas?
    • I'm trying to migrate my mod from 1.20 to 1.21. Some packages in the forge api were changed so my mod did have some classes not working. I've changed everything i needed but still is getting me the following error error: cannot access Registry DeferredRegister.create(ForgeRegistries.BLOCKS, FarmMod.MOD_ID); ^ class file for net.minecraft.core.Registry not found The piece of code that is wrong is   public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, FarmMod.MOD_ID); And here are my imports   import com.lucas.farmmod.FarmMod; import com.lucas.farmmod.block.custom.BaseIrrigatorBlock; import com.lucas.farmmod.item.ModItems; import com.lucas.farmmod.item.custom.BaseIrrigatorBlockItem; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.Item; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraftforge.eventbus.api.IEventBus; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; import net.minecraftforge.registries.RegistryObject; The class DeferredRegister is throwing the error in the print below     I've tried running rebuilding my project in every way possible, tried refreshing my dependencies but nothing works. What can i do?
    • It sounds like there might be a synchronization issue with your PartEntity. Ensure that the part entity’s position is updated in your entity's tick method to continuously match the main entity’s location.
  • Topics

×
×
  • Create New...

Important Information

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