• 0

    posted a message on NEW! Vanilla+ True Survival Server
    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
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on Mod- NEED HELP!!
    You should post an error log...
    Posted in: Modification Development
  • 0

    posted a message on Help Me to Make a Mod

    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. :Diamond:

    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? >.>
    Posted in: Modification Development
  • 0

    posted a message on java.lang.NoClassDefFoundError
    Really? Nobody knows how to fix this?
    Posted in: Modification Development
  • 0

    posted a message on java.lang.NoClassDefFoundError
    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() 
        {
        }
    }


    Anyone willing to help?
    Posted in: Modification Development
  • 0

    posted a message on [1.0.0] [WIP] The Nostalgia Factor
    I'm new to Minecraft modding, though I know a good amount of Java. I'd love to help out, but I just don't think i'd have the time :/
    Posted in: WIP Mods
  • 0

    posted a message on Minecraft iOS Worth It?
    I'd get it if I were you. I have it for android and love it :biggrin.gif:
    Posted in: MCPE: Discussion
  • 0

    posted a message on The "ZombiePiratez" Seed. Water for miles!
    I decided to try my own name for a seed and got water in all directions, after spawning in the air.
    Can anyone explain this? :tongue.gif:
    Posted in: Seeds
  • 0

    posted a message on Tiny Island Seed!
    I tried it. No island, but an awesomely placed NPC village :biggrin.gif:
    Posted in: Seeds
  • 0

    posted a message on Mansion... Work in progress
    This looks really nice. Keep up the good work!
    Posted in: Screenshots
  • 0

    posted a message on allways snowing in any biome mod for 1.0.0?
    I would like this exact same thing. I love the snow :biggrin.gif:
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on [Bukkit] [Survival] [NO WHITELIST] McMustache's Server!
    Helloooo new person to read this topic!

    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! :rolleyes:


    66.229.229.9

    [color="#FF0000"]Happy survivaling? Ah nevermind, Have a great time! :biggrin.gif: [/color]
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on [MOD] [1.6.6] The Block
    BEST MOD EVER
    Posted in: Minecraft Mods
  • 0

    posted a message on [32x32] [V1.4_01] [1.5_01] Zombie's Texture Pack
    Quote from Loglis

    I really like this pack, please update to 1.6 :wink.gif:


    *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
    Posted in: Resource Packs
  • 0

    posted a message on [TOOL] Cyborg's Tools - MCNostalgia 1.0.4
    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.
    Posted in: Minecraft Tools
  • To post a comment, please .