• 0

    posted a message on 2 problems with my mod
    Bump
    Posted in: Modification Development
  • 0

    posted a message on im trying to make a mod
    Quote from HDA ViiRuS

    Watch my tutorials, they are really in-depth
    http://www.youtube.com/user/HDAViiRuS?feature=mhee


    Seriously, you post that on nearly every thread >: (
    Posted in: Modification Development
  • 0

    posted a message on The Elder Scrolls V: Skyrim, Minecraft Mod Edition!
    Add the Toddhowared Pickaxe :smile.gif:
    oh yeah, and the Notched Pickaxe too :smile.gif:
    Posted in: WIP Mods
  • 0

    posted a message on 2 problems with my mod
    Hello there, I am the creator of the PoopCraft mod, and I am having some problems.

    First of all, I made my tool as good as possible in EnumToolMaterial, it mines stone fine, but when I try mining coal+ it's as if I'm using my fist.

    Here it is:

    POO("POO", 5, 0, 16, 50.0F, 5, 50);


    I'm not sure what the last number does, because it's new in 1.0.

    Secondly, I can't spawn my mob into the world, because I just get some kind of blue screen then the game crashes.

    Section in mod_poop

    ModLoader.RegisterEntityID(EntityPooGladiator.class, "Poo Gladiator", ModLoader.getUniqueEntityId());
    ModLoader.AddSpawn(EntityPooGladiator.class, 1, 1, 5, EnumCreatureType.creature);


    EntityPooGladiator

    package net.minecraft.src;
    
    public class EntityPooGladiator extends EntityCreature
    {
    
            public EntityPooGladiator(World world)
            {
                    super(world);
                    texture = "/pooglad.png";
                    moveSpeed = 1.0F;
                    int attackStrength = 6;
                    isImmuneToFire = true;
                    npcName = "Poo Gladiator";
            }
    
            protected int getDropItemId()
            {
                    return mod_poop.Poosword.shiftedIndex;
            }
            public boolean canBreatheUnderwater()
            {
                    return true;
            }
            public boolean interact(EntityPlayer entityplayer)
            {
            	ModLoader.getMinecraftInstance().thePlayer.addChatMessage("You dare challenge me, the Poop Gladiator?");
            	return true;
            }
            public ItemStack getHeldItem()
            {
            	return getHeldItem();
            }
            private static final ItemStack defaultHeldItem;
            static
            {
            	defaultHeldItem = new ItemStack(mod_poop.Poosword, 1);
            }
            protected boolean canDespawn()
            {
                    return false;
            }
            
            public String npcName;
    
    		public int getMaxHealth() {
    			return 0;
    		}
    }


    My RenderPooGladiator

    package net.minecraft.src;
    
    import org.lwjgl.opengl.GL11;
    
    public class RenderPooGladiator extends RenderLiving
    {
    
        public RenderPooGladiator (ModelBiped modelbase, float f)
        {
            super(modelbase, f);
        }
    
        public void renderPooGladiatorA1(EntityPooGladiator entity, double d, double d1, double d2, float f, float f1)
        {
            super.doRenderLiving(entity, d, d1, d2, f, f1);
                    
            if(entity.npcName.length() > 0 && entity.npcName != "Poo Gladiator")
            {
                renderLivingLabel(entity, entity.npcName, d, d1, d2, 64);
            }    
        }
        public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2, float f, float f1)
        {
            super.doRenderLiving((EntityPooGladiator ) entityliving, d, d1, d2, f, f1);
        }
    
        public void doRender(Entity entity, double d, double d1, double d2, float f, float f1)
        {
            renderPooGladiatorA1((EntityPooGladiator)entity, d, d1, d2, f, f1);
        }
        
         
        private void renderPooGladiatorA(EntityPooGladiator entity, double d,
    			double d1, double d2, float f, float f1) {
    	}
    
    	protected void preRenderScale(EntityPooGladiator  entity, float f)
        {
            GL11.glScalef(1.0F, 1.0F, 1.0F);
        }
    
        protected void preRenderCallback(EntityLiving entityliving, float f)
        {
            preRenderScale((EntityPooGladiator)entityliving, f);
        }
    }


    Thanks!
    Posted in: Modification Development
  • 0

    posted a message on [1.0.0] PoopCraft!
    Also, thanks to Minecraft1Bros for yet another video! Subscribe to their amazing channel!

    I will not be updating as regularly as I have been lately, I will try once a week, or something like that, with the occasional surprise update. A surprise update will be when I add features, but not tell anyone the new features. They will not be on the changelog either. They will be added to the changelog once someone posts on here what the new feature is. :biggrin.gif:

    Thanks everyone,
    mea99
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Thank you!
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Yep. :biggrin.gif:
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    THank you :biggrin.gif:
    Posted in: Minecraft Mods
  • 0

    posted a message on How to play minecraft with a controller!
    EDIT: I managed to do it, but with a Power A PS3 controller. I will put up the .cfg file soon.
    Posted in: Java Edition Support
  • 0

    posted a message on [1.0.0] PoopCraft!
    Thanks for all the feedback!

    And Broeo, already done :smile.gif:
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Also, updated to Alpha v0.5_01. Just a bugfix. Fixed Mobs not dropping poo and now all mobs drop poo!
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Quote from Awesomebob74

    This mod is complete ****...


    also, link don't work (with or with out blocks)


    What do you mean? The link works perfectly fine for me?
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Any bugs so far I have no idea about! Please just post them here, and I will add them to the changelog!
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Hmm... not bad idea :biggrin.gif: I'll attempt it :tongue.gif: I'm not that great of a modder, so I might not be able to do it :tongue.gif:
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.0.0] PoopCraft!
    Updated for 1.0! had to change half the code, so please report any bugs to me! Thanks!
    Posted in: Minecraft Mods
  • To post a comment, please .