IGN: MrZombieWalrus
AGE: 17
LOCATION/ TIMEZONE: US West -8 (PST)
HOW OFTEN DO YOU PLAY MINECRAFT? 1-3 Hours a day (If schoolwork permits it)
WHY ARE YOU INTERESTED IN JOINING MY SERVER? Looks like the kind of server I'd like to be on, and I love survival Minecraft
ANY OTHER COMMENTS? e.g WHAT ARE YOUR BUILDING SPECIALTIES? I can build most anything, though I'm fairly good at redstone wiring (I've built a computer before) and I'm also very accomplished at building houses and castles =P
Hello, I always had a dream to make a mod. I have wrote down some really cool ideas, but I have no idea on how to make a mod, and I fail at coding and stuff. So if you know that you can make mods, please tell me, and send me a link to one of your mods (if you have one) and I will review it and see if you make good mods.
If you are interested, I'll PM you with all my ideas. I'm still not done with the ideas. If you have your own ideas, be free to tell me.
I'll credit you and be fair when I'll be publishing it.
And please, update it with every Minecraft update.
So yeah.
I've been thinking about about it, it's gonna be pretty hard to code the mod, so I hope you're high-skilled.
I also want it to compatible with all mods.
So you expect somebody to make a mod for you, then let you post it, and include a little bit of credit for them? >.>
I am unable to get my mod to work. I keep getting a java.lang.NoClassDefFoundError D:
Here's my Modloader.txt:
Jan 02, 2012 2:58:19 PM ModLoader init
FINE: ModLoader 1.0.0 Initializing...
Jan 02, 2012 2:58:19 PM ModLoader readFromClassPath
FINER: Adding mods from C:\Users\Zombie\AppData\Roaming\.minecraft\bin\minecraft.jar
Jan 02, 2012 2:58:19 PM ModLoader readFromClassPath
FINER: Zip found.
Jan 02, 2012 2:58:19 PM ModLoader readFromModFolder
FINER: Adding mods from C:\Users\Zombie\AppData\Roaming\.minecraft\mods\Mod.zip
Jan 02, 2012 2:58:19 PM ModLoader readFromModFolder
FINER: Zip found.
Jan 02, 2012 2:58:19 PM ModLoader addMod
FINE: Failed to load mod from "mod_EXAMPLE.class"
Jan 02, 2012 2:58:19 PM ModLoader addMod
FINER: THROW
java.lang.NoClassDefFoundError: mod_EXAMPLE (wrong name: net/minecraft/src/mod_EXAMPLE)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at ModLoader.addMod(ModLoader.java:270)
at ModLoader.readFromModFolder(ModLoader.java:1293)
at ModLoader.init(ModLoader.java:826)
at ModLoader.AddAllRenderers(ModLoader.java:186)
at wb.<init>(wb.java:76)
at wb.<clinit>(wb.java:9)
at net.minecraft.client.Minecraft.a(SourceFile:265)
at net.minecraft.client.Minecraft.run(SourceFile:644)
at java.lang.Thread.run(Unknown Source)
Jan 02, 2012 2:58:29 PM ModLoader AddAllRenderers
FINE: Initialized
and here's the class that's giving me the error:
package net.minecraft.src;
public class mod_EXAMPLE extends BaseMod
{
// STATICS - notice that newSeeds is using ItemSeeds which means we have to add some more info
public static final Block newCrop = new BlockNewCrop(202, 0).setHardness(0.0F).setBlockName("newCrop");
public static final Item newSeeds = new ItemSeeds(593, mod_EXAMPLE.newCrop.blockID, Block.tilledField.blockID).setItemName("newSeeds");
// I made this one food so you can see an example of that. YUM!
public static final Item newVegetable = new ItemFood(594, 2, 0.6F, false).setItemName("veggie");
//CROP IMAGE DECLARATION - Why when we're doing it again below? I don't know. Just do it until I find out.
public static int newCrop1 = ModLoader.addOverride("/terrain.png", "/newCrop1.png");
public static int newCrop2 = ModLoader.addOverride("/terrain.png", "/newCrop2.png");
public static int newCrop3 = ModLoader.addOverride("/terrain.png", "/newCrop3.png");
public static int newCrop4 = ModLoader.addOverride("/terrain.png", "/newCrop4.png");
public mod_EXAMPLE()
{
//NEW BLOCK REGISTER
ModLoader.RegisterBlock(newCrop);
//NEW ITEM NAMES
ModLoader.AddName(newSeeds, "New Seeds");
ModLoader.AddName(newVegetable, "Veggie");
//NEW BLOCK AND CROP GROWTH IMAGE OVERRIDES
newCrop.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/newCrop0.png");
newCrop1 = ModLoader.addOverride("/terrain.png", "/newCrop1.png");
newCrop2 = ModLoader.addOverride("/terrain.png", "/newCrop2.png");
newCrop3 = ModLoader.addOverride("/terrain.png", "/newCrop3.png");
newCrop4 = ModLoader.addOverride("/terrain.png", "/newCrop4.png");
// You can have up to 8 textures with this tutorial, but you need as little as 2 since we can resue them.
// NEW ITEM IMAGE OVERRIDES
newSeeds.iconIndex = ModLoader.addOverride("/gui/items.png", "/newSeeds.png");
newVegetable.iconIndex = ModLoader.addOverride("/gui/items.png", "/newVegetable.png");
//Seed Exchange RECIPE "Exchange regular seeds for YOUR custom seeds" Also different amounts could = different seeds
// like 1 seeds = your new seed and then 2 seeds can = a seed you make later"
ModLoader.AddShapelessRecipe(new ItemStack(newSeeds, 1), new Object[] {
new ItemStack(Item.seeds, 1)
});
}
public String getVersion()
{
return "0.1";
}
public void load()
{
}
}
Please help me, I am so confused. I'm running Windows XP, and whenever i use the patcher to install Alpha 1.2.6 the program just says
MCNostalgia v1.0.1 Patcher
WARNING:Backup found
Applying patches...
usage: bin/bsapply oldfile newfile patchfile
ERROR: Checksum failed. minecraft.jar was not sucessfully patched. Run minecraft to restore it.
Press ENTER to continue...
And it's not just 1.2.6, it's every other version.
Please help, and thanks for your time.
0
AGE: 17
LOCATION/ TIMEZONE: US West -8 (PST)
HOW OFTEN DO YOU PLAY MINECRAFT? 1-3 Hours a day (If schoolwork permits it)
WHY ARE YOU INTERESTED IN JOINING MY SERVER? Looks like the kind of server I'd like to be on, and I love survival Minecraft
ANY OTHER COMMENTS? e.g WHAT ARE YOUR BUILDING SPECIALTIES? I can build most anything, though I'm fairly good at redstone wiring (I've built a computer before) and I'm also very accomplished at building houses and castles =P
0
0
So you expect somebody to make a mod for you, then let you post it, and include a little bit of credit for them? >.>
0
0
Here's my Modloader.txt:
and here's the class that's giving me the error:
Anyone willing to help?
0
0
0
Can anyone explain this? :tongue.gif:
0
0
0
0
I have to offer to you today an AMAZING server! We have:
[color="#00FFFF"]- A great community
- 5 Admins to manage
-And an AWESOME SERVER![/color]
All standard rules apply (No greifing, stealing, murdering)[/color]
So come join us!
66.229.229.9
[color="#FF0000"]Happy survivaling? Ah nevermind, Have a great time! :biggrin.gif: [/color]
0
0
*sigh* sure. I've gone on to workking on other texture packs, so if someone would like to keep this one going, that would be appreciated
0
And it's not just 1.2.6, it's every other version.
Please help, and thanks for your time.