• 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    When 1.9 officially comes out and MCP is updated, it won't take nearly as long, right?
    I'm assuming they took so long because 1.8 had several graphical changes.
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from Bosco

    How is he spoiled exactly?

    It depends how old you are.
    If you're 12 years old with a desktop worth at least $500 doing anything, then you're spoiled.
    Off-Topic: My (old) friend is 14 years old and he gets F's, but has a $1300 laptop, $2000 desktop, huge TV in his room, etc...
    And he's the worst possible person you can meet. Total douche...
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Can't wait for the update. Then, I could actually PLAY the game.
    Posted in: Minecraft Mods
  • 0

    posted a message on CITYCRAFT-{24/7} {bukkit} {PVP} HELP BUILD A CITY
    age: 14
    your style of building: Realistic buildings
    projects you have done: A few cabins, nice and cozy, the way I like it. I haven't done any MAJOR projects, like a huge tower or anything. I have built some towers, and a castle.
    how long you've been playing minecraft: Since October 2010
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on [WIP] Paint Mod - released!
    It would be pretty cool if there was a blank painting canvas. That would be much better in SMP, though.
    Also, it would be pretty hilarious to be able to paint on animals.
    Posted in: Mods Discussion
  • 0

    posted a message on [1.0.0] Clay Soldiers Classic
    Quote from KodaichiZero

    * online multiplayer SMP support!

    That would be amazing.
    Posted in: Minecraft Mods
  • 0

    posted a message on Trying to make a new block.. 1 Error!
    Instead of this:
    "###", " # ", " # ", Character,valueOf('#'). Block.planks

    Put this:
    "###", " # ", " # ", Character.valueOf('#'). Block.planks

    It's "Character.valueOf" not "Character,valueOf"

    But anyway, I'd recommend using Modloader. A lot easier.
    Posted in: Mods Discussion
  • 0

    posted a message on Coding a Model for an Entity?
    Quote from Franzo203

    As far as i know you don't "code" a model

    Yes, you do. Minecraft uses code rather than 3D model files. You can look inside the JAR file. No 3D models. Ask any coder.
    Posted in: Mods Discussion
  • 0

    posted a message on Coding a Model for an Entity?
    I've been trying to code an entity. Not living entities such as cows and sheep, but stuff like minecarts and boats. Unfortunately, I've never coded a model before. I attempted to make one, but it seems that it doesn't seem to render whenever I place the block. It seems to be the size I want it to be, but for some reason it's just a square. I copied the code directly off a chicken, considering its superclass is just ModelBase rather than ModelQuadraped, but it's still just a square. I'm fairly sure it's the render file that's not working.
    Are there any tutorials to create entities that aren't mobs?

    PS: I remember a while ago that there was a website made with HTML in which you input the code for the model and it would show. Does anybody know this website?
    Posted in: Mods Discussion
  • 0

    posted a message on onItemRightClick not working (still)
    Okay, I really, REALLY need to pay attention...lol
    Apparently, it wasn't working because here:
    public static final Item potion = new Item(97).setItemName("potion");

    I'm supposed to put:
    public static final Item potion = new ItemPotion(97).setItemName("potion");

    Well, that was fun...
    Posted in: Mods Discussion
  • 0

    posted a message on onItemRightClick not working (still)
    Quote from cheechako

    You should check out some of the many Tutorials.

    I have been. Unfortunately, I wasn't able to find anything that resolves my problem. I'll keep looking, though.
    Posted in: Mods Discussion
  • 0

    posted a message on onItemRightClick not working (still)
    I need some help. I already made a thread about this, but I still haven't solved the problem and I didn't want to bump too much. I'm trying to make a potion, but onItemRightClick isn't working at all. Here's the code:
    mod_Potion.java
    package net.minecraft.src;
    
    public class mod_Potion extends BaseMod {
            public mod_Potion() {
                    ModLoader.AddName(potion, "Potion");
                    ModLoader.AddRecipe(new ItemStack(potion, 64), new Object[] {
                "X", Character.valueOf('X'), Block.dirt});
                    potion.iconIndex = ModLoader.addOverride("/gui/items.png", "/gui/potion.png");
            }
            
            @Override
            public String Version() {
                    return "1.7.3";
            }
            public static final Item potion = new Item(97).setItemName("potion");
    }

    ItemPotion.java
    package net.minecraft.src;
    
    public class ItemPotion extends Item {
            public ItemPotion(int i) {
                    super(i); //<<<< Don't know exactly what to put there.
            }
            public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer) {
                    itemstack.stackSize--;
                    entityplayer.heal(5);
                    return itemstack;
            }
    }


    I'm pretty sure it might be because the ItemPotion file isn't referring to the mod_Potion file. How would I do that, anyway?
    Posted in: Mods Discussion
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    I need some help. I was already making this quick mod for practice before seeing this thread, but I thought I'd ask for help. I'm trying to make a potion, but onItemRightClick isn't working at all. Here's the code:
    mod_Potion.java
    package net.minecraft.src;
    
    public class mod_Potion extends BaseMod {
    	public mod_Potion() {
    		ModLoader.AddName(potion, "Potion");
    		ModLoader.AddRecipe(new ItemStack(potion, 64), new Object[] {
                "X", Character.valueOf('X'), Block.dirt});
    		potion.iconIndex = ModLoader.addOverride("/gui/items.png", "/gui/potion.png");
    	}
    	
    	@Override
    	public String Version() {
    		return "1.7.3";
    	}
    	public static final Item potion = new Item(97).setItemName("potion");
    }

    ItemPotion.java
    package net.minecraft.src;
    
    public class ItemPotion extends Item {
    	public ItemPotion(int i) {
    		super(i); //<<<< Don't know exactly what to put there.
    	}
    	public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer) {
    		itemstack.stackSize--;
    		entityplayer.heal(5);
    		return itemstack;
    	}
    }

    Any suggestions? Also, how would I have ItemPotion.java refer to the potion item? I think that might be the problem.
    Posted in: Tutorials
  • 0

    posted a message on Minecraft Block Modding Help
    ModLoader.RegisterBlock(NateBlock);

    You had the B has to be capitalized.
    Edit: Capitalization matters. You seem to have a lot of those errors.
    Posted in: Mods Discussion
  • 0

    posted a message on mod idea
    The fact that trapdoors attach to the bottom of a block would make this look dumb.
    Posted in: Mods Discussion
  • To post a comment, please .