When I start the MCP client and get the block, the bottom and top textures are how they are supposed to be, but the side textures are the purple null textures in terrain.png.
I checked the texture paths and they're correct, I also checked the "mod_" thing in the block file for where it finds the textures, and the names in it and the mod_ file, and they're both correct, and I get no errors, so I'm not sure whats wrong.
My mod_file includes more than one block, but I don't think that should be a problem, and the second block (I am adding more, though.) just uses the side texture, and it finds the texture like a regular block would.(The second one is stairs.)
My block file:
package net.minecraft.src;
public class BlockCandyCornBlock extends Block
{
public BlockCandyCornBlock(int i, int j)
{
super(i, j, Material.wood);
}
public int getBlockTextureFromSideAndMetadata(int i, int j)
{
return getBlockTextureFromSide(i);
}
public int getBlockTextureFromSide(int i)
{
if (i == 0)
{
return mod_CandyCornModBlocks.CandyCornBlockBottom;
}
if (i == 1)
{
return mod_CandyCornModBlocks.CandyCornBlockTop;
}
else
{
return mod_CandyCornModBlocks.CandyCornBlockSides;
}
}
}
My mod_ file:
package net.minecraft.src;
public class mod_CandyCornModBlocks extends BaseMod
{
public static final Block CandyCornBlock = new BlockCandyCornBlock(234, 0).setBlockName("Candy Corn Block").setHardness(4F).setResistance(4F).setLightValue(0F).setCreativeTab(CreativeTabs.tabDeco).setStepSound(Block.soundWoodFootstep);
public static final Block CandyCornStairs = new BlockCandyCornStairs(235, 0).setBlockName("Candy Corn Stairs").setHardness(4F).setResistance(4F).setLightValue(0F).setCreativeTab(CreativeTabs.tabDeco).setStepSound(Block.soundWoodFootstep);
public static int CandyCornBlockBottom = ModLoader.addOverride("/terrain.png", "/CandyCornMod/CandyCornBlockBottom.png");
public static int CandyCornBlockTop = ModLoader.addOverride("/terrain.png", "/CandyCornMod/CandyCornBlockTop.png");
public static int CandyCornBlockSides = ModLoader.addOverride("/terrain.png", "/CandyCornMod/CandyCornBlockSides.png");
public void load()
{
CandyCornBlock.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/CandyCornMod/CandyCornBlockSides.png");
ModLoader.registerBlock(CandyCornBlock);
ModLoader.addName(CandyCornBlock, "Candy Corn Block");
ModLoader.addRecipe(new ItemStack(CandyCornBlock, 1), new Object [] {"CCC","CCC","CCC", Character.valueOf('C'), mod_CandyCornModItems.CandyCorn });
CandyCornStairs.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/CandyCornMod/CandyCornBlockSides.png");
ModLoader.registerBlock(CandyCornStairs);
ModLoader.addName(CandyCornStairs, "Candy Corn Stairs");
ModLoader.addRecipe(new ItemStack(CandyCornStairs, 1), new Object [] {"C ","CC ","CCC", Character.valueOf('C'), mod_CandyCornModItems.CandyCorn });
}
public String getVersion()
{
return "1.3.2";
}
}
You can't use an image twice; meaning that you can't use the texture of the side of the corn block for the stairs aswell. You have to make a duplicate then call it separately with a different name.
Rollback Post to RevisionRollBack
“Computers are incredibly fast, accurate and stupid; humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination."
You can't use an image twice; meaning that you can't use the texture of the side of the corn block for the stairs aswell. You have to make a duplicate then call it separately with a different name.
Ok, probably a noob question:
I'm on a mac. When I try to run the decompile.sh with Terminal, I get;
/Users/billmyers/Documents/mcp72/decompile.sh ; exit;
bill-myers-computer-5:~ billmyers$ /Users/billmyers/Documents/mcp72/decompile.sh ; exit;
python: can't open file 'runtime/decompile.py': [Errno 2] No such file or directory
I'm just starting, so I really have no idea about... anything...
Ok, probably a noob question:
I'm on a mac. When I try to run the decompile.sh with Terminal, I get;
/Users/billmyers/Documents/mcp72/decompile.sh ; exit;
bill-myers-computer-5:~ billmyers$ /Users/billmyers/Documents/mcp72/decompile.sh ; exit;
python: can't open file 'runtime/decompile.py': [Errno 2] No such file or directory
I'm just starting, so I really have no idea about... anything...
Not a noob question. I'm on a Mac, too. You just have to change the directory to your mcp folder using cd in terminal. Then it'll work (the script calls for decompile.py, and if you're not in the mcp directory, python can't discover the file).
Since I see your directory in the error message, here's the code you'll need for terminal:
eating it causes like i dunno a purple wobbly screen (like with nausea) im aware this wont be easy
Well, it actually will be easy, it's just work. I'm kind of busy at the moment, but here's a thread that could probably help: http://www.minecraft...-advanced-item/
But here's some help with the basic code that gives you the potion effect:
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.
How come it cannot find the picture of my food?
I placed it on the items folder. Do I have to put it somewhere?
I named it correctly
What's wrong then????
Crash Log:
Minecraft has crashed!
----------------------
Minecraft has stopped running because it encountered a problem; Unexpected error
This error has been saved to C:\Users\Okamoto\Documents\CGNinja Files\Modding 1.3.2\jars\.\crash-reports\crash-2012-09-09_15.26.04-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT baaeaa09 --------
Generated 9/9/12 3:26 PM
- Minecraft Version: 1.3.2
- Operating System: Windows Vista (x86) version 6.0
- Java Version: 1.7.0_07, Oracle Corporation
- Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
- Memory: 978817448 bytes (933 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
- JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
- ModLoader: Mods loaded: 4
ModLoader 1.3.2
mod_minecraftlep 3.14159265
mod_minecraftleparmor 3.14159265
mod_minecraftlepfood 1.3.2
- LWJGL: 2.4.2
- OpenGL: GeForce 210/PCIe/SSE2 GL version 3.3.0, NVIDIA Corporation
- Is Modded: Very likely
- Type: Client
- Texture Pack: Default
- Profiler Position: N/A (disabled)
java.lang.RuntimeException: java.lang.Exception: Image not found: /flesh.png
at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1632)
at net.minecraft.src.ModLoader.onTick(ModLoader.java:1188)
at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:21)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:857)
at net.minecraft.client.Minecraft.run(Minecraft.java:751)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.Exception: Image not found: /flesh.png
at net.minecraft.src.ModLoader.loadImage(ModLoader.java:1105)
at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1624)
... 5 more
--- END ERROR REPORT 128a46d9 ----------
How Do I change how fast my tools are and there durability?
How to do that is explained.
Rollback Post to RevisionRollBack
“Computers are incredibly fast, accurate and stupid; humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination."
Dragonphly77 but how would i make my own potion effects through lots of looking iv found you can use
public static potion Tripping = (new Potion(30, true, 5114)).setPotionName("Tripping");
which would then happen when you eat the food but i dont know how to create the effects
Making a new potion is making a new bottle of water. Make a new potion class (i.e. NausiaPotion.java) and make the effect nausia, then make a new instance of that.
Edit: Seriously though? "Tripping"?
Rollback Post to RevisionRollBack
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.
Not a noob question. I'm on a Mac, too. You just have to change the directory to your mcp folder using cd in terminal. Then it'll work (the script calls for decompile.py, and if you're not in the mcp directory, python can't discover the file).
Since I see your directory in the error message, here's the code you'll need for terminal:
cd ~/Documents/mcp72
Ok, now I'm getting:
== MCP 7.2 (data: 7.2, client: 1.3.2, server: 1.3.2) ==
# found ff, ff patches, srgs, name csvs, doc csvs, param csvs, renumber csv, astyle, astyle config
> Creating Retroguard config files
!! Modified jar detected. Unpredictable results !!
== Decompiling client using fernflower ==
> Creating SRGs
> Applying Retroguard
'"java" -cp "runtime/bin/retroguard.jar:lib:lib/*:jars/bin/minecraft.jar:jars/bin/jinput.jar:jars/bin...' failed : 1
== ERRORS FOUND ==
Unrecoverable error during obfuscation, see log file for details.
RetroGuard error: COM.rl.obf.classfile.ClassFileException: ClassNotFound wh
==================
Decompile failed
== MCP 7.2 (data: 7.2, client: 1.3.2, server: 1.3.2) ==
# found ff, ff patches, srgs, name csvs, doc csvs, param csvs, renumber csv, astyle, astyle config
> Creating Retroguard config files
!! Modified jar detected. Unpredictable results !!
== Decompiling client using fernflower ==
> Creating SRGs
> Applying Retroguard
'"java" -cp "runtime/bin/retroguard.jar:lib:lib/*:jars/bin/minecraft.jar:jars/bin/jinput.jar:jars/bin...' failed : 1
== ERRORS FOUND ==
Unrecoverable error during obfuscation, see log file for details.
RetroGuard error: COM.rl.obf.classfile.ClassFileException: ClassNotFound wh
==================
Decompile failed
Did you download a fresh jar and then put modloader in it?
Rollback Post to RevisionRollBack
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.
I created my Tools but Minecarft Crashed, and I don't get how to fix it..
Minecraft has crashed!
----------------------
Minecraft has stopped running because it encountered a problem; Exception occured in ModLoader
This error has been saved to C:\Users\Josh\Desktop\The Runic Mod\Files\Files from MCP\jars\.\crash-reports\crash-2012-09-09_19.59.39-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT 161ffc0d --------
Generated 9/9/12 7:59 PM
- Minecraft Version: 1.3.2
- Operating System: Windows 7 (amd64) version 6.1
- Java Version: 1.7.0_05, Oracle Corporation
- Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 955300544 bytes (911 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
- JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
- ModLoader: Mods loaded: 18
ModLoader 1.3.2
mod_CandyCrystal 1.3.2
mod_CandyCrystalRed 1.3.2
mod_CreeperBerry 1.3.2
mod_CreeperBerryBush 1.3.2
mod_FireRubyDust 1.3.2
mod_FireRubyOre 1.3.2
mod_GravitestCrystal 1.3.2
mod_GravitestOre 1.3.2
mod_MBlueS 1.3.1
mod_MGS 1.3.1
mod_MRedS 1.3.1
mod_MYellowS 1.3.1
mod_MythicStoneBlack 1.3.1
mod_Orange 1.3.2
mod_runic 1.3.2
mod_RunicGem 1.3.2
mod_RunicOre 1.3.2
java.lang.Error: Unresolved compilation problems:
stairDouble cannot be resolved or is not a field
stairSingle cannot be resolved or is not a field
at net.minecraft.src.ItemRunicPickAxe.<init>(ItemRunicPickAxe.java:63)
at net.minecraft.src.mod_RunicTools.<clinit>(mod_RunicTools.java:4)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at net.minecraft.src.ModLoader.addMod(ModLoader.java:378)
at net.minecraft.src.ModLoader.readFromClassPath(ModLoader.java:1369)
at net.minecraft.src.ModLoader.init(ModLoader.java:944)
at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:186)
at net.minecraft.src.RenderManager.<init>(RenderManager.java:86)
at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:14)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:404)
at net.minecraft.client.Minecraft.run(Minecraft.java:724)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 2716c379 ----------
Something about the stairDouble and stairSingle is causing Minecraft to crash..
I created my Tools but Minecarft Crashed, and I don't get how to fix it..
Minecraft has crashed!
----------------------
Minecraft has stopped running because it encountered a problem; Exception occured in ModLoader
This error has been saved to C:\Users\Josh\Desktop\The Runic Mod\Files\Files from MCP\jars\.\crash-reports\crash-2012-09-09_19.59.39-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT 161ffc0d --------
Generated 9/9/12 7:59 PM
- Minecraft Version: 1.3.2
- Operating System: Windows 7 (amd64) version 6.1
- Java Version: 1.7.0_05, Oracle Corporation
- Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 955300544 bytes (911 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
- JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
- ModLoader: Mods loaded: 18
ModLoader 1.3.2
mod_CandyCrystal 1.3.2
mod_CandyCrystalRed 1.3.2
mod_CreeperBerry 1.3.2
mod_CreeperBerryBush 1.3.2
mod_FireRubyDust 1.3.2
mod_FireRubyOre 1.3.2
mod_GravitestCrystal 1.3.2
mod_GravitestOre 1.3.2
mod_MBlueS 1.3.1
mod_MGS 1.3.1
mod_MRedS 1.3.1
mod_MYellowS 1.3.1
mod_MythicStoneBlack 1.3.1
mod_Orange 1.3.2
mod_runic 1.3.2
mod_RunicGem 1.3.2
mod_RunicOre 1.3.2
java.lang.Error: Unresolved compilation problems:
stairDouble cannot be resolved or is not a field
stairSingle cannot be resolved or is not a field
at net.minecraft.src.ItemRunicPickAxe.<init>(ItemRunicPickAxe.java:63)
at net.minecraft.src.mod_RunicTools.<clinit>(mod_RunicTools.java:4)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at net.minecraft.src.ModLoader.addMod(ModLoader.java:378)
at net.minecraft.src.ModLoader.readFromClassPath(ModLoader.java:1369)
at net.minecraft.src.ModLoader.init(ModLoader.java:944)
at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:186)
at net.minecraft.src.RenderManager.<init>(RenderManager.java:86)
at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:14)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:404)
at net.minecraft.client.Minecraft.run(Minecraft.java:724)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 2716c379 ----------
Something about the stairDouble and stairSingle is causing Minecraft to crash..
Before your mod gets any bigger than it already is, go about turning all those mod_*** files into one. That will help you spot problems and debug your code immensely. After that, if the solution isn't evident, ask again.
I created my Tools but Minecarft Crashed, and I don't get how to fix it..
Minecraft has crashed!
----------------------
Minecraft has stopped running because it encountered a problem; Exception occured in ModLoader
This error has been saved to C:\Users\Josh\Desktop\The Runic Mod\Files\Files from MCP\jars\.\crash-reports\crash-2012-09-09_19.59.39-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT 161ffc0d --------
Generated 9/9/12 7:59 PM
- Minecraft Version: 1.3.2
- Operating System: Windows 7 (amd64) version 6.1
- Java Version: 1.7.0_05, Oracle Corporation
- Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 955300544 bytes (911 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
- JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
- ModLoader: Mods loaded: 18
ModLoader 1.3.2
mod_CandyCrystal 1.3.2
mod_CandyCrystalRed 1.3.2
mod_CreeperBerry 1.3.2
mod_CreeperBerryBush 1.3.2
mod_FireRubyDust 1.3.2
mod_FireRubyOre 1.3.2
mod_GravitestCrystal 1.3.2
mod_GravitestOre 1.3.2
mod_MBlueS 1.3.1
mod_MGS 1.3.1
mod_MRedS 1.3.1
mod_MYellowS 1.3.1
mod_MythicStoneBlack 1.3.1
mod_Orange 1.3.2
mod_runic 1.3.2
mod_RunicGem 1.3.2
mod_RunicOre 1.3.2
java.lang.Error: Unresolved compilation problems:
stairDouble cannot be resolved or is not a field
stairSingle cannot be resolved or is not a field
at net.minecraft.src.ItemRunicPickAxe.<init>(ItemRunicPickAxe.java:63)
at net.minecraft.src.mod_RunicTools.<clinit>(mod_RunicTools.java:4)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at net.minecraft.src.ModLoader.addMod(ModLoader.java:378)
at net.minecraft.src.ModLoader.readFromClassPath(ModLoader.java:1369)
at net.minecraft.src.ModLoader.init(ModLoader.java:944)
at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:186)
at net.minecraft.src.RenderManager.<init>(RenderManager.java:86)
at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:14)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:404)
at net.minecraft.client.Minecraft.run(Minecraft.java:724)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 2716c379 ----------
Something about the stairDouble and stairSingle is causing Minecraft to crash..
The pickaxe class in the tutorial is now 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."
It's Both The PickAxe and Axe Class that is crashing.
Axe class is updated now too.
Rollback Post to RevisionRollBack
“Computers are incredibly fast, accurate and stupid; humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination."
To post a comment, please login or register a new account.
You can't use an image twice; meaning that you can't use the texture of the side of the corn block for the stairs aswell. You have to make a duplicate then call it separately with a different name.
together they are powerful beyond imagination."
Thanks, it worked.
I'm on a mac. When I try to run the decompile.sh with Terminal, I get;
/Users/billmyers/Documents/mcp72/decompile.sh ; exit;
bill-myers-computer-5:~ billmyers$ /Users/billmyers/Documents/mcp72/decompile.sh ; exit;
python: can't open file 'runtime/decompile.py': [Errno 2] No such file or directory
I'm just starting, so I really have no idea about... anything...
Bleach Mod
-
View User Profile
-
View Posts
-
Send Message
Retired StaffNot a noob question. I'm on a Mac, too. You just have to change the directory to your mcp folder using cd in terminal. Then it'll work (the script calls for decompile.py, and if you're not in the mcp directory, python can't discover the file).
Since I see your directory in the error message, here's the code you'll need for terminal:
Well, it actually will be easy, it's just work. I'm kind of busy at the moment, but here's a thread that could probably help: http://www.minecraft...-advanced-item/
But here's some help with the basic code that gives you the potion effect:
I placed it on the items folder. Do I have to put it somewhere?
I named it correctly
What's wrong then????
Crash Log:
Minecraft has crashed!
----------------------
Minecraft has stopped running because it encountered a problem; Unexpected error
This error has been saved to C:\Users\Okamoto\Documents\CGNinja Files\Modding 1.3.2\jars\.\crash-reports\crash-2012-09-09_15.26.04-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT baaeaa09 --------
Generated 9/9/12 3:26 PM
- Minecraft Version: 1.3.2
- Operating System: Windows Vista (x86) version 6.0
- Java Version: 1.7.0_07, Oracle Corporation
- Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
- Memory: 978817448 bytes (933 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
- JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
- ModLoader: Mods loaded: 4
ModLoader 1.3.2
mod_minecraftlep 3.14159265
mod_minecraftleparmor 3.14159265
mod_minecraftlepfood 1.3.2
- LWJGL: 2.4.2
- OpenGL: GeForce 210/PCIe/SSE2 GL version 3.3.0, NVIDIA Corporation
- Is Modded: Very likely
- Type: Client
- Texture Pack: Default
- Profiler Position: N/A (disabled)
java.lang.RuntimeException: java.lang.Exception: Image not found: /flesh.png
at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1632)
at net.minecraft.src.ModLoader.onTick(ModLoader.java:1188)
at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:21)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:857)
at net.minecraft.client.Minecraft.run(Minecraft.java:751)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.Exception: Image not found: /flesh.png
at net.minecraft.src.ModLoader.loadImage(ModLoader.java:1105)
at net.minecraft.src.ModLoader.registerAllTextureOverrides(ModLoader.java:1624)
... 5 more
--- END ERROR REPORT 128a46d9 ----------
How to do that is explained.
together they are powerful beyond imagination."
-
View User Profile
-
View Posts
-
Send Message
Retired StaffMaking a new potion is making a new bottle of water. Make a new potion class (i.e. NausiaPotion.java) and make the effect nausia, then make a new instance of that.
Edit: Seriously though? "Tripping"?
Ok, now I'm getting:
Bleach Mod
-
View User Profile
-
View Posts
-
Send Message
Retired StaffDid you download a fresh jar and then put modloader in it?
Something about the stairDouble and stairSingle is causing Minecraft to crash..
Yeah, I did. Could be something with my mac. Does it matter how old my mac is? Do I need to update JDK or something?
Bleach Mod
Before your mod gets any bigger than it already is, go about turning all those mod_*** files into one. That will help you spot problems and debug your code immensely. After that, if the solution isn't evident, ask again.
http://www.youtube.com/user/006ruler
im gay
The pickaxe class in the tutorial is now updated.
together they are powerful beyond imagination."
It's Both The PickAxe and Axe Class that is crashing.
Axe class is updated now too.
together they are powerful beyond imagination."