• 0

    posted a message on 1.9 Updates: Animal Breeding Continues Advancement
    The heads are sooooo cute! They are like mini bobble-heads~ :biggrin.gif:
    Posted in: Minecraft News
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    Quote from Strengthowns

    @CarlosCH1221, Thanks alot man! Nice to know that people are enjoying these.

    @_Dayanna_, Yep, that's going to be one of the next ones I do.

    Yes! Thanks. :biggrin.gif: I'm having lots of problems with that.
    Posted in: Tutorials
  • 0

    posted a message on Mo' Stuff (Recuiting)
    what you can/want to do? textures and tester
    how often can you work on this? most days
    previous mods or texture packs? none but I have made a mob before and am working on a custom mob
    Posted in: WIP Mods
  • 0

    posted a message on [!READ THE OP!] Buying Minecraft Gift Codes for Others!
    I would love to get a gift code. I don't have the legit minecraft but my parents never let me buy any games on the internet that I really want to get. They don't even let me buy games IRL, except like at Christmas and my birthday and even then very rarely. I hope someone will be generous enough to get me one. :smile.gif: This is a really great idea. Thank you for making this.
    Posted in: Discussion
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    Could you a make a tut for custom mobs please?
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader1.7.3] Adding Custom MOBs and MORE!
    package net.minecraft.src;
    
    
    // Referenced classes of package net.minecraft.src:
    //            ModelQuadruped, ModelRenderer, Entity
    
    public class ModelTurtle extends ModelQuadruped
    {
    
        public ModelTurtle()
        {
    
    		Leg = new ModelRenderer(this, 13, 0);
    		Leg.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		Leg.setRotationPoint(2F, 22F, -1F);
    		Leg.rotateAngleX = 0F;
    		Leg.rotateAngleY = 0F;
    		Leg.rotateAngleZ = 0F;
    		Leg.mirror = false;
    		Leg_2 = new ModelRenderer(this, 13, 0);
    		Leg_2.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		Leg_2.setRotationPoint(-3F, 22F, -1F);
    		Leg_2.rotateAngleX = 0F;
    		Leg_2.rotateAngleY = 0F;
    		Leg_2.rotateAngleZ = 0F;
    		Leg_2.mirror = false;
    		Leg_3 = new ModelRenderer(this, 13, 0);
    		Leg_3.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		Leg_3.setRotationPoint(2F, 22F, -7F);
    		Leg_3.rotateAngleX = 0F;
    		Leg_3.rotateAngleY = 0F;
    		Leg_3.rotateAngleZ = 0F;
    		Leg_3.mirror = false;
    		Leg_4 = new ModelRenderer(this, 13, 0);
    		Leg_4.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		Leg_4.setRotationPoint(-3F, 22F, -7F);
    		Leg_4.rotateAngleX = 0F;
    		Leg_4.rotateAngleY = 0F;
    		Leg_4.rotateAngleZ = 0F;
    		Leg_4.mirror = false;
    		Body = new ModelRenderer(this, 38, 0);
    		Body.addBox(0F, 0F, 0F, 7, 5, 6, 0F);
    		Body.setRotationPoint(-3F, 18F, -6F);
    		Body.rotateAngleX = -2.195913E-16F;
    		Body.rotateAngleY = 0F;
    		Body.rotateAngleZ = 0F;
    		Body.mirror = false;
    		Head = new ModelRenderer(this, 23, 0);
    		Head.addBox(0F, 0F, 0F, 5, 3, 2, 0F);
    		Head.setRotationPoint(-2F, 19F, -8F);
    		Head.rotateAngleX = 0F;
    		Head.rotateAngleY = 0F;
    		Head.rotateAngleZ = 0F;
    		Head.mirror = false;
    	}
    	
    	public void render(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.render(f, f1, f2, f3, f4, f5);
    		setRotationAngles(f, f1, f2, f3, f4, f5);
    		Leg.render(f5);
    		Leg_2.render(f5);
    		Leg_3.render(f5);
    		Leg_4.render(f5);
    		Body.render(f5);
    		Head.render(f5);
    	}
    	
    	public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.setRotationAngles(f, f1, f2, f3, f4, f5);
    	}
    	
    	//fields
    	public ModelRenderer Leg;
    	public ModelRenderer Leg_2;
    	public ModelRenderer Leg_3;
    	public ModelRenderer Leg_4;
    	public ModelRenderer Body;
    	public ModelRenderer Head;
    }

    What am I doing wrong in my ModelTurtle? I keep getting these errors:
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:11: cannot find symbol
    symbol  : constructor ModelQuadruped()
    location: class net.minecraft.src.ModelQuadruped
    {
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:59: cannot find symbol
    symbol  : method render(float,float,float,float,float,float)
    location: class net.minecraft.src.ModelQuadruped
    super.render(f, f1, f2, f3, f4, f5);
    ^
    
    2 errors
    ==================
    
    > Done in 14.45 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    How do you make a custom NPC for Minecraft?
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader1.7.3] Adding Custom MOBs and MORE!
    Quote from inlanoche

    If you want to be helped please read the help that is offered:

    head = new ModelRenderer(this, 0, 0);


    This was taken (quite easily) from ModelCow.java. Notice the inclusion of this in the object creation. Again, use Eclipse. it will tell you where these type of errors are, as well as often offer a valid fix.

    Uh, yeah, about Eclipse, I got it, but it doesn't show me any errors. Maybe It's because I'm using a different version? *is confused* Well, I fixed that problem but there's 2 errors I can figure out:
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:11: cannot find symbol
    symbol  : constructor ModelQuadruped()
    location: class net.minecraft.src.ModelQuadruped
    {
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:58: cannot find symbol
    symbol  : method render(float,float,float,float,float,float)
    location: class net.minecraft.src.ModelQuadruped
    super.render(f, f1, f2, f3, f4, f5);
    ^
    
    2 errors
    ==================
    
    > Done in 13.44 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .


    This is the changed ModelTurtle:
    package net.minecraft.src;
    
    
    // Referenced classes of package net.minecraft.src:
    //            ModelQuadruped, ModelRenderer, Entity
    
    public class ModelTurtle extends ModelQuadruped
    {
    
        public ModelTurtle()
        {
            New_Shape1 = new ModelRenderer(this, 13, 0);
    		New_Shape1.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape1.setRotationPoint(2F, 16F, -1F);
    		New_Shape1.rotateAngleX = 0F;
    		New_Shape1.rotateAngleY = 0F;
    		New_Shape1.rotateAngleZ = 0F;
    		New_Shape1.mirror = false;
    		New_Shape11 = new ModelRenderer(this, 13, 0);
    		New_Shape11.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape11.setRotationPoint(-3F, 16F, -1F);
    		New_Shape11.rotateAngleX = 0F;
    		New_Shape11.rotateAngleY = 0F;
    		New_Shape11.rotateAngleZ = 0F;
    		New_Shape11.mirror = false;
    		New_Shape111 = new ModelRenderer(this, 13, 0);
    		New_Shape111.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape111.setRotationPoint(2F, 16F, -7F);
    		New_Shape111.rotateAngleX = 0F;
    		New_Shape111.rotateAngleY = 0F;
    		New_Shape111.rotateAngleZ = 0F;
    		New_Shape111.mirror = false;
    		New_Shape112 = new ModelRenderer(this, 13, 0);
    		New_Shape112.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape112.setRotationPoint(-3F, 16F, -7F);
    		New_Shape112.rotateAngleX = 0F;
    		New_Shape112.rotateAngleY = 0F;
    		New_Shape112.rotateAngleZ = 0F;
    		New_Shape112.mirror = false;
    		New_Shape2 = new ModelRenderer(this, 38, 0);
    		New_Shape2.addBox(0F, 0F, 0F, 7, 5, 6, 0F);
    		New_Shape2.setRotationPoint(-3F, 12F, -6F);
    		New_Shape2.rotateAngleX = 0F;
    		New_Shape2.rotateAngleY = 0F;
    		New_Shape2.rotateAngleZ = 0F;
    		New_Shape2.mirror = false;
    		New_Shape3 = new ModelRenderer(this, 23, 0);
    		New_Shape3.addBox(0F, 0F, 0F, 5, 3, 2, 0F);
    		New_Shape3.setRotationPoint(-2F, 13F, -8F);
    		New_Shape3.rotateAngleX = 0F;
    		New_Shape3.rotateAngleY = 0F;
    		New_Shape3.rotateAngleZ = 0F;
    		New_Shape3.mirror = false;
    	}
    	
    	public void render(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.render(f, f1, f2, f3, f4, f5);
    		setRotationAngles(f, f1, f2, f3, f4, f5);
    		New_Shape1.render(f5);
    		New_Shape11.render(f5);
    		New_Shape111.render(f5);
    		New_Shape112.render(f5);
    		New_Shape2.render(f5);
    		New_Shape3.render(f5);
    	}
    	
    	public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.setRotationAngles(f, f1, f2, f3, f4, f5);
    	}
    	
    	//fields
    	public ModelRenderer New_Shape1;
    	public ModelRenderer New_Shape11;
    	public ModelRenderer New_Shape111;
    	public ModelRenderer New_Shape112;
    	public ModelRenderer New_Shape2;
    	public ModelRenderer New_Shape3;
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader1.7.3] Adding Custom MOBs and MORE!
    I fixed some things but can someone help me fix these other errors?
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:11: cannot find symbol
    symbol  : constructor ModelQuadruped()
    location: class net.minecraft.src.ModelQuadruped
    {
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:12: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape1 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:19: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape11 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:26: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape111 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:33: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape112 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:40: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape2 = new ModelRenderer(38, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:47: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape3 = new ModelRenderer(23, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:58: cannot find symbol
    symbol  : method render(float,float,float,float,float,float)
    location: class net.minecraft.src.ModelQuadruped
    super.render(f, f1, f2, f3, f4, f5);
    ^
    
    8 errors
    ==================
    
    > Done in 12.90 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .


    All this is my coding.
    This is my mod_Turtle:
    package net.minecraft.src; 
     
    import java.lang.reflect.Method; 
    import java.util.Map; 
     
    public class mod_Turtle extends BaseMod 
    { 
    
        public mod_Turtle() 
        { 
            ModLoader.RegisterEntityID(EntityTurtle.class, "Turtle", ModLoader.getUniqueEntityId()); 
            ModLoader.AddSpawn(EntityTurtle.class, 250, 1, 1, EnumCreatureType.creature); 
        } 
    
        public void AddRenderer(Map map) 
        { 
            map.put(EntityTurtle.class, new RenderTurtle(new ModelTurtle(), 0.5F)); 
        } 
            
            public String Version() 
        { 
            return "1.8.1"; 
        } 
    }


    This is my EntityTurtle:
    package net.minecraft.src;
    
    public class EntityTurtle extends EntityCreature
    {
    
            public EntityTurtle(World world)
            {
                    super(world);
                    texture = "/Turtle.png";
                    moveSpeed = 0.2F;
                    isImmuneToFire = false;
            }
    
            protected int getDropItemId()
            {
                    return Item.diamond.shiftedIndex;
            }
            public boolean canBreatheUnderwater()
            {
                    return true;
            }
            protected boolean canDespawn()
            {
                    return true;
            }
            public void onEntityDeath()
            {
                    //If you know what you're doing, you can make it
                    //do cool things. e.g. explode like creeper.
            }
    }


    This is my RenderTurtle:
    package net.minecraft.src;
    
    
    // Referenced classes of package net.minecraft.src:
    //            RenderLiving, EntityTurtle, ModelBase, EntityLiving, 
    //            Entity
    
    public class RenderTurtle extends RenderLiving
    {
    
        public RenderTurtle(ModelBase modelbase, float f)
        {
            super(modelbase, f);
        }
    
        public void renderTurtle(EntityTurtle entityTurtle, double d, double d1, double d2, 
                float f, float f1)
        {
            super.doRenderLiving(entityTurtle, d, d1, d2, f, f1);
        }
    
        public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2, 
                float f, float f1)
        {
            renderTurtle((EntityTurtle)entityliving, d, d1, d2, f, f1);
        }
    
        public void doRender(Entity entity, double d, double d1, double d2, 
                float f, float f1)
        {
            renderTurtle((EntityTurtle)entity, d, d1, d2, f, f1);
        }
    }


    And this is my ModelTurtle:
    package net.minecraft.src;
    
    
    // Referenced classes of package net.minecraft.src:
    //            ModelQuadruped, ModelRenderer, Entity
    
    public class ModelTurtle extends ModelQuadruped
    {
    
        public ModelTurtle()
        {
            New_Shape1 = new ModelRenderer(13, 0);
    		New_Shape1.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape1.setRotationPoint(2F, 16F, -1F);
    		New_Shape1.rotateAngleX = 0F;
    		New_Shape1.rotateAngleY = 0F;
    		New_Shape1.rotateAngleZ = 0F;
    		New_Shape1.mirror = false;
    		New_Shape11 = new ModelRenderer(13, 0);
    		New_Shape11.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape11.setRotationPoint(-3F, 16F, -1F);
    		New_Shape11.rotateAngleX = 0F;
    		New_Shape11.rotateAngleY = 0F;
    		New_Shape11.rotateAngleZ = 0F;
    		New_Shape11.mirror = false;
    		New_Shape111 = new ModelRenderer(13, 0);
    		New_Shape111.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape111.setRotationPoint(2F, 16F, -7F);
    		New_Shape111.rotateAngleX = 0F;
    		New_Shape111.rotateAngleY = 0F;
    		New_Shape111.rotateAngleZ = 0F;
    		New_Shape111.mirror = false;
    		New_Shape112 = new ModelRenderer(13, 0);
    		New_Shape112.addBox(0F, 0F, 0F, 2, 2, 2, 0F);
    		New_Shape112.setRotationPoint(-3F, 16F, -7F);
    		New_Shape112.rotateAngleX = 0F;
    		New_Shape112.rotateAngleY = 0F;
    		New_Shape112.rotateAngleZ = 0F;
    		New_Shape112.mirror = false;
    		New_Shape2 = new ModelRenderer(38, 0);
    		New_Shape2.addBox(0F, 0F, 0F, 7, 5, 6, 0F);
    		New_Shape2.setRotationPoint(-3F, 12F, -6F);
    		New_Shape2.rotateAngleX = 0F;
    		New_Shape2.rotateAngleY = 0F;
    		New_Shape2.rotateAngleZ = 0F;
    		New_Shape2.mirror = false;
    		New_Shape3 = new ModelRenderer(23, 0);
    		New_Shape3.addBox(0F, 0F, 0F, 5, 3, 2, 0F);
    		New_Shape3.setRotationPoint(-2F, 13F, -8F);
    		New_Shape3.rotateAngleX = 0F;
    		New_Shape3.rotateAngleY = 0F;
    		New_Shape3.rotateAngleZ = 0F;
    		New_Shape3.mirror = false;
    	}
    	
    	public void render(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.render(f, f1, f2, f3, f4, f5);
    		setRotationAngles(f, f1, f2, f3, f4, f5);
    		New_Shape1.render(f5);
    		New_Shape11.render(f5);
    		New_Shape111.render(f5);
    		New_Shape112.render(f5);
    		New_Shape2.render(f5);
    		New_Shape3.render(f5);
    	}
    	
    	public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)
    	{
    		super.setRotationAngles(f, f1, f2, f3, f4, f5);
    	}
    	
    	//fields
    	public ModelRenderer New_Shape1;
    	public ModelRenderer New_Shape11;
    	public ModelRenderer New_Shape111;
    	public ModelRenderer New_Shape112;
    	public ModelRenderer New_Shape2;
    	public ModelRenderer New_Shape3;
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader1.7.3] Adding Custom MOBs and MORE!
    I tried this with 1.8 and got a ton of errors:
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\EntityTurtle.java:16: cannot find symbol
    symbol  : variable ironingot
    location: class net.minecraft.src.Item
    return Item.ironingot.shiftedIndex;
    ^
    
    src\minecraft\net\minecraft\src\mod_Turtle.java:12: cannot find symbol
    symbol  : method AddSpawn(java.lang.Class<net.minecraft.src.EntityTurtle>,int,ne
    t.minecraft.src.EnumCreatureType)
    location: class net.minecraft.src.ModLoader
    ModLoader.AddSpawn(EntityTurtle.class, 250, EnumCreatureType.creature);
    ^
    
    src\minecraft\net\minecraft\src\mod_Turtle.java:17: cannot find symbol
    symbol  : constructor RenderTurtle(net.minecraft.src.ModelTurtle,float)
    location: class net.minecraft.src.RenderTurtle
    map.put(EntityTurtle.class, new RenderTurtle(new ModelTurtle(), 0.5F));
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:8: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape1 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:15: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape11 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:22: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape111 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:29: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape112 = new ModelRenderer(13, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:36: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape2 = new ModelRenderer(38, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:43: cannot find symbol
    symbol  : constructor ModelRenderer(int,int)
    location: class net.minecraft.src.ModelRenderer
    New_Shape3 = new ModelRenderer(23, 0);
    ^
    
    src\minecraft\net\minecraft\src\ModelTurtle.java:54: cannot find symbol
    symbol  : method render(float,float,float,float,float,float)
    location: class net.minecraft.src.ModelQuadruped
    super.render(f, f1, f2, f3, f4, f5);
    ^
    
    src\minecraft\net\minecraft\src\RenderTurtle.java:37: cannot find symbol
    symbol  : method getTurtleSize()
    location: class net.minecraft.src.EntityTurtle
    int i = entityTurtle.getTurtleSize();
    ^
    
    src\minecraft\net\minecraft\src\RenderTurtle.java:38: cannot find symbol
    symbol  : variable field_767_b
    location: class net.minecraft.src.EntityTurtle
    float f1 = (entityTurtle.field_767_b + (entityTurtle.field_768_a - entityTurtle.
    field_767_:cool.gif: * f) / ((float)i * 0.5F + 1.0F);
    ^
    
    src\minecraft\net\minecraft\src\RenderTurtle.java:38: cannot find symbol
    symbol  : variable field_768_a
    location: class net.minecraft.src.EntityTurtle
    float f1 = (entityTurtle.field_767_b + (entityTurtle.field_768_a - entityTurtle.
    field_767_:cool.gif: * f) / ((float)i * 0.5F + 1.0F);
    ^
    
    src\minecraft\net\minecraft\src\RenderTurtle.java:38: cannot find symbol
    symbol  : variable field_767_b
    location: class net.minecraft.src.EntityTurtle
    float f1 = (entityTurtle.field_767_b + (entityTurtle.field_768_a - entityTurtle.
    field_767_:cool.gif: * f) / ((float)i * 0.5F + 1.0F);
    ^
    
    src\minecraft\net\minecraft\src\RenderTurtle.java:38: operator / cannot be appli
    ed to <nulltype>,float
    float f1 = (entityTurtle.field_767_b + (entityTurtle.field_768_a - entityTurtle.
    field_767_:cool.gif: * f) / ((float)i * 0.5F + 1.0F);
    ^
    
    15 errors
    ==================
    
    > Done in 12.08 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    Nevermind my last post, I tried to make an item and got these errors:
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:12: illegal start of expressio
    n
    public String Version()
    ^
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:12: ';' expected
    public String Version()
    ^
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:17: reached end of file while
    parsing
    }→
    ^
    
    3 errors
    ==================
    
    > Done in 3.05 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .


    My mod_Amethyst:
    package net.minecraft.src;
    
    public class mod_Amethyst extends BaseMod
    {
       public static final Item Amethyst = new Item(30010).setItemName("Amethyst");
    
    public mod_Amethyst()
    {
       Amethyst.iconIndex = ModLoader.addOverride("/gui/items.png", "/gui/Amethyst.png");
       ModLoader.AddName(Amethyst, "Amethyst");
    
    public String Version()
       {
       return "1.8.1";
       }
            
    }


    My ItemAmethyst:
    package net.minecraft.src;
    
    import java.util.Random;
    
    public class ItemAmethyst extends Item 
    {
    
            public ItemAmethyst (int i)
            {
                    super(i);
                    maxStackSize = 64;
            }
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    == MCP v4.4 ==
    > Recompiling client...
    javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.j
    ar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath s
    rc/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/mine
    craft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java  conf/pat
    ches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\BlockAmethystOre.java:8: invalid method declarat
    ion; return type required
    public BlockAmethystOre(int i, int j)
    ^
    
    src\minecraft\net\minecraft\src\BlockAmethystOre.java:18: not a statement
    1;
    ^
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:12: illegal start of expressio
    n
    public String Version()
    ^
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:12: ';' expected
    public String Version()
    ^
    
    src\minecraft\net\minecraft\src\mod_Amethyst.java:17: reached end of file while
    parsing
    }→
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: unclosed character liter
    al
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: <identifier> expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: illegal start of type
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: <identifier> expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: ';' expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: illegal start of type
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: <identifier> expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: ';' expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: illegal start of type
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: illegal start of type
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    src\minecraft\net\minecraft\src\mod_AmethystOre.java:5: ';' expected
    public static Block AmethystOre = new BlockAmethystOre(Block's ID here, 0).setHa
    rdness(2.0F).setResistance(200.0F).setLightValue(1.0F).setBlockName("AmethystOre
    ");
    ^
    
    16 errors
    ==================
    
    > Done in 20.88 seconds
    > Recompiling server...
    !! Can not find server sources !!
    Press any key to continue . . .

    ?
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    To make an Ore would you just use the Ore generation tut or do you have to make the block?
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    How would you make an Ore?
    Posted in: Tutorials
  • 1

    posted a message on NPC village W/ ANIMAL BARN & more starting crops
    Great map! It's cool.
    Posted in: Maps
  • To post a comment, please .