• 0

    posted a message on ✪★ Rageland.net ★✪ - Epic MMO Survival Server
    In-game name: Evil_Lan
    Age: 14
    Location: Canada
    Why you want to join our server: because I love to help others, play minecraft multiplayer and because this server and its community looks awesome! =D
    Posted in: PC Servers
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    wats the difference between creature and a mob....(human npc tut)
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader][1.8.1] Strength's Tutorials/Help (28/11/11) *Generation*
    when will the slabs tut be released?
    Posted in: Tutorials
  • 0

    posted a message on [Beginner - Advanced] Madgoblins Modloader Tutorials! for [1.8.1] {closed}
    OMG!!! EPIC!!!! nice tutorials!! when will the Making a bow and Making a sword set your enemys on fire tutorials be released!>?!!?
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    how do I make a half step block is it the same as a normal block?
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    can some1 tell me (or make a tut) on how I can make an item shoot thunder from the sky (where I am point) when I right click. Can some1 also tell me (or make a tut) on how I can make a item that can break any block quickly.
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    Can some1 tell me all the things I can change like:

    -To jump super high =
    public void onEntityWalking(World world, int x, int y, int z, Entity entity)
    {
    entity.motionY += 1F;
    }
    }

    -To run super fast (slip) =
    slipperiness = 2F;

    Does any1 no any more, cuz thats all I no. lol XD
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    Can I get some help here plz =D
    I made an item called Donut and when I recompiled it, i had no problems but when I went to test the mod, the game opened showed the mojang logo then it crashed and I got this message:

    java.lang.RuntimeException: java.lang.Exception: Image not found: Donut.png
    at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1161)
    at net.minecraft.src.ModLoader.OnTick(ModLoader.java:882)
    at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:24)
    at net.minecraft.client.Minecraft.run(Minecraft.java:514)
    at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.Exception: Image not found: Donut.png
    at net.minecraft.src.ModLoader.loadImage(ModLoader.java:846)
    at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1153)
    ... 4 more
    --- END ERROR REPORT c3a2e7cb ----------


    (not an expert) I think it says that It couldn't find Donut.png I put the image in: mcp43\bin\minecraft

    What do I need to do to fix this?
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    Can I get some help here plz =D
    I made an item called Donut and when I recompiled it, i had no problems but when I went to test the mod, the game opened showed the mojang logo then it crashed and I got this message:

    java.lang.RuntimeException: java.lang.Exception: Image not found: Donut.png
    at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1161)
    at net.minecraft.src.ModLoader.OnTick(ModLoader.java:882)
    at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:24)
    at net.minecraft.client.Minecraft.run(Minecraft.java:514)
    at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.Exception: Image not found: Donut.png
    at net.minecraft.src.ModLoader.loadImage(ModLoader.java:846)
    at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1153)
    ... 4 more
    --- END ERROR REPORT c3a2e7cb ----------


    (not an expert) I think it says that It couldn't find Donut.png I put the image in: mcp43\bin\minecraft

    What do I need to do to fix this?
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    Can some1 plz help me with this, I dont no what to do:

    src\minecraft\net\minecraft\src\mod_SoupItem.java:3: error: '{' expected
    public class mod_SoupItem extends BaseMod
    ^

    src\minecraft\net\minecraft\src\mod_SoupItem.java:27: error: reached end of file
    while parsing
    }
    ^
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    can some1 help me with this:

    == ERRORS FOUND ==

    src\minecraft\net\minecraft\src\mod_SoupItem.java:3: error: '{' expected
    public class mod_SoupItem extends BaseMod
    ^

    src\minecraft\net\minecraft\src\mod_SoupItem.java:27: error: reached end of file
    while parsing
    }
    ^

    2 errors

    mod_SoupItem.java :

    package net.minecraft.src;

    public class mod_SoupItem extends BaseMod

    public mod_SoupItem()
    {
    ModLoader.AddName(soupItem, "Soup");
    }

    public static final Item soupItem;

    static
    {
    soupItem = (new ItemSoup(4001, 11)).setIconIndex(ModLoader.addOverride("/gui/items.png", "Soup.png")).setItemName("soupItem");
    }

    public String Version()
    {
    return "1";
    }

    public void AddRecipes(CraftingManager craftingmanager)
    {
    craftingmanager.addRecipe(new ItemStack(soupItem), new Object[]{
    " ### ", "###", Character.valueOf('#'), Block.dirt
    });
    }

    ItemSoup.java :

    package net.minecraft.src;

    public class ItemSoup extends Item
    {
    private int healAmount;
    public ItemSoup (int i, int j)
    {
    super(i);
    healAmount = j;
    maxStackSize = 1;
    }

    public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
    {
    itemstack.stackSize--;
    entityplayer.heal(healAmount);
    return itemstack;
    }

    }
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    can some1 tell what I need to type so that I can walk through my block? and what I need to type so that it falls to the ground with gravity (like sand)
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    can some1 help me with this:

    == ERRORS FOUND ==

    src\minecraft\net\minecraft\src\mod_SoupItem.java:3: error: '{' expected
    public class mod_SoupItem extends BaseMod
    ^

    src\minecraft\net\minecraft\src\mod_SoupItem.java:27: error: reached end of file
    while parsing
    }
    ^

    2 errors

    mod_SoupItem.java :

    package net.minecraft.src;

    public class mod_SoupItem extends BaseMod

    public mod_SoupItem()
    {
    ModLoader.AddName(soupItem, "Soup");
    }

    public static final Item soupItem;

    static
    {
    soupItem = (new ItemSoup(4001, 11)).setIconIndex(ModLoader.addOverride("/gui/items.png", "Soup.png")).setItemName("soupItem");
    }

    public String Version()
    {
    return "1";
    }

    public void AddRecipes(CraftingManager craftingmanager)
    {
    craftingmanager.addRecipe(new ItemStack(soupItem), new Object[]{
    " ### ", "###", Character.valueOf('#'), Block.dirt
    });
    }

    ItemSoup.java :

    package net.minecraft.src;

    public class ItemSoup extends Item
    {
    private int healAmount;
    public ItemSoup (int i, int j)
    {
    super(i);
    healAmount = j;
    maxStackSize = 1;
    }

    public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
    {
    itemstack.stackSize--;
    entityplayer.heal(healAmount);
    return itemstack;
    }

    }
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    I am searching through the src folder I dont seem to find any water, lava, plants,etc .java files are they some special blocks?? and where can I find them??
    Posted in: Tutorials
  • 0

    posted a message on [Creating Mods] Modding tutorials [21/5/11]
    Quote from IX iTzRogue XI

    Look at the code of a block that already does that >.>


    Like what??? water?
    Posted in: Tutorials
  • To post a comment, please .