• 0

    posted a message on [Tutorial]THE QUICKEST PATH TO MODDING: Complete Beginner
    Hi, nice tutorial, but i have a problem during recompile.


    == MCP 6.2 (data: 6.2, client: 1.2.5, server: 1.2.5) ==
    # found jad, jad patches, ff patches, osx patches, srgs, name csvs, doc csvs, pa
    ram csvs, astyle, astyle config
    == Recompiling client ==
    > Cleaning bin
    > Recompiling
    '"C:\Program Files\Java\jdk1.7.0_03\bin\javac" -Xlint:-options -deprecation -g -
    source 1.6 -target 1....' failed : 1

    == ERRORS FOUND ==

    src\minecraft\net\minecraft\src\mod_SunStone.java:3: error: mod_SunStone is not
    abstract and does not override abstract method load() in BaseMod
    public class mod_SunStone extends BaseMod
    ^

    src\minecraft\net\minecraft\src\mod_SunStone.java:16: error: cannot find symbol
    ModLoader.AddName(SunStone, "SunStone");
    ^

    symbol: method AddName(Block,String)
    location: class ModLoader
    src\minecraft\net\minecraft\src\mod_SunStone.java:18: error: cannot find symbol
    ModLoader.RegisterBlock(SunStone);
    ^

    symbol: method RegisterBlock(Block)
    location: class ModLoader
    src\minecraft\net\minecraft\src\mod_SunStone.java:20: error: cannot find symbol
    ModLoader.AddRecipe(new ItemStack(SunStone, 1), new Object[] {

    ^

    symbol: method AddRecipe(ItemStack,Object[])
    location: class ModLoader
    4 errors
    ==================

    I need help.. .

    And here is the code for my block.



    package net.minecraft.src;

    public class mod_SunStone extends BaseMod
    {
    public static final Block SunStone;

    static
    {
    SunStone = (new Block(130, ModLoader.addOverride("/terrain.png",
    "/MoreMetals/SunStone.png"),
    Material.rock)).setHardness(20F).setLightValue(1F).setResistance(15F).setStepSound(Block.soundStoneFootstep).setBlockName("SunStone");
    }

    public mod_SunStone()
    {
    ModLoader.AddName(SunStone, "SunStone");

    ModLoader.RegisterBlock(SunStone);

    ModLoader.AddRecipe(new ItemStack(SunStone, 1), new Object[] {
    "GSG", "SGS", "GSG", Character.valueOf('G'), Block.glowStone, Character.valueOf('S'), Block.stone
    });
    }


    public String Version()
    {
    return "1.2.5_01";
    }
    }

    Edit Nvm, forgot to read the last part of the tutorial lol

    Edit Edit Nvm again, not working
    Posted in: Tutorials
  • 0

    posted a message on Flan's Mod 5.5.2 Update : 1.12.2, 100s of new Skins! : Helicopters, Mechas, Planes, Vehicles, 3D Guns, Multiplayer, TDM, CTF
    Quote from Scout37

    Did you learn how to read "requires simple parts pack". Or more so, make sure it downloaded correctly and that you have the proper og sound files such as "bullethitentity" and "bomb". When you downloaded simple parts pack, they may not have installed correctly.


    I have the Simple Parts Pack installed correctly.
    Posted in: Minecraft Mods
  • 0

    posted a message on Flan's Mod 5.5.2 Update : 1.12.2, 100s of new Skins! : Helicopters, Mechas, Planes, Vehicles, 3D Guns, Multiplayer, TDM, CTF
    Hello, I have a problem. Whenever i shoot an NPC or drop a bomb my minecraft goes to the "Saving Chunks" screen and then crashes. Why?
    Posted in: Minecraft Mods
  • To post a comment, please .