This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mods loaded: 6 | |
| ModLoader 1.2.3 | |
| mod_SpyCam 1.2.3 | |
| mod_Herobrine 1.1 | |
| mod_RecipeBook 1.2.3 | |
| mod_Armor 1.2.3 | |
| mod_Shelf 1.2.3 | |
| Minecraft has crashed! | |
| ---------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| public class mod_ToolsNSpear extends BaseMod{ | |
| public static final Item Spear = new ItemSword(300, EnumToolMaterial.SPEAR).setItemName("S"); | |
| public static final Item DivineSword = new ItemSword(301, EnumToolMaterial.DIVINE).setItemName("DS"); | |
| public static final Item DivinePick = new ItemPickaxe(302, EnumToolMaterial.DIVINE).setItemName("DP"); | |
| public static final Item DivineAxe = new ItemAxe(303, EnumToolMaterial.DIVINE).setItemName("DA"); | |
| public static final Item DivineSpade = new ItemSpade(304, EnumToolMaterial.DIVINE).setItemName("DS"); | |
| public static final Item DivineHoe = new ItemHoe(305, EnumToolMaterial.DIVINE).setItemName("DH"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| == MCP 6.0 (data: 6.0, client: 1.2.3, server: 1.2.3) == | |
| # found jad, jad patches, ff patches, osx patches, srgs, name csvs, doc csvs, pa | |
| ram csvs, astyle, astyle config | |
| == Recompiling client == | |
| > Cleaning bin | |
| > Recompiling | |
| '"C:\Program Files\Java\jdk1.7.0_02\bin\javac" -g -source 1.6 -target 1.6 -class | |
| path "lib;lib\*;jars\...' failed : 1 | |
| == ERRORS FOUND == |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mods loaded: 3 | |
| ModLoader 1.2.3 | |
| mod_TooManyItems 1.2.2/1.2.3 2012-03-03 | |
| mod_Divine 1 | |
| Minecraft has crashed! | |
| ---------------------- | |
| Minecraft has stopped running because it encountered a problem. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| == MCP 5.6 (data: 5.6, client: 1.1, server: 1.1) == | |
| > Recompiling client... | |
| '"C:\Program Files\Java\jdk1.7.0_02\bin\javac.exe" -g -source 1.6 -target 1.6 -c | |
| lasspath "lib;lib\*;jars\bin\minecraft.jar;jars\bin\jinput.jar;jars\bin\lwjgl.ja | |
| r;jars\bin\lwjgl_util.jar" -sourcepath src\minecraft -d bin\minecraft src\minecr | |
| aft\net\minecraft\client\*.java src\minecraft\net\minecraft\isom\*.java src\mine | |
| craft\net\minecraft\src\*.java conf\patches\ga.java conf\patches\Start.java' fai | |
| led : 1 | |
| == ERRORS FOUND == |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.minecraft.src; | |
| import java.util.Random; | |
| public class mod_divineblock extends BaseMod{ | |
| public static final Block divineblock = new divineblock(34).setHardness(4.1F).setRessistance(99F).setBlockName("divine block").setLightValue(3F); | |
| public mod_divineblock() | |
| { | |
| ModLoader.RegisterBlock(divineblock); | |
| divineblock.blockIndexInTexture = ModLoader.addOverride("/terrain.png","/divineblock.png"); |