• 0

    posted a message on [1.10] Majestic Creative | FREE RANK AND /FLY | No Whitelist | PLOT WORLD | HUGE Plots | No Lag | Dedicated Server | Active
    My IGN is SkateGuy2000. BTW, already been on and server is pretty great.
    Posted in: PC Servers
  • 0

    posted a message on [1.3.2] DarkCraft - Factions, PvP, Building
    Yes it is. I'm actually a pending admin and an old friend of the owner. We reunited yesterday.
    Posted in: PC Servers
  • 0

    posted a message on [1.3.2] DarkCraft - Factions, PvP, Building
    We are a USA based 30 slot Minecraft server that's just starting out. We could really use some Admins right now, so hop on the website forums and post an application. At the moment, only 4 people will be chosen, but once we get more slots, we may have up to 15 admins! So just keep you're hopes up, even if you don't get chosen soon. We know that we will evolve, so this will be helpful.

    Visit our website at http://dark-craftt.webs.com (We will get a domain soon)
    Visit our server at 64.79.109.145:25575 (We will get a DNS soon)

    *I am not the owner, his username is Scorpiacat, but I have permission from him to make this post
    Posted in: PC Servers
  • 0

    posted a message on Mrsal511's Modding Tutorials (With Video)
    Quote from PhantomJedi759

    Replace mod_tutorial in your code with mod_chocolatemilk. This is a very basic error, and you should be able to read the error report and find out what is wrong. If you don't start trying to do that now, you will have many issues later on.

    oh my god thanks i am such an idiot
    Posted in: Tutorials
  • 0

    posted a message on Mrsal511's Modding Tutorials (With Video)
    hey gives me this error:


    == 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_chocolatemilk.java:14: error: invalid method
    declaration; return type required
    public mod_tutorial()
    _____^

    1 error
    ==================

    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .

    i used the underscores to get the ^ under the m
    and this is my code:
    package net.minecraft.src;
    public class mod_chocolatemilk extends BaseMod
    {
    public static Item ChocolateMilk;
    
    static
    {
    
      ChocolateMilk = (new Item(2000)).setIconIndex(ModLoader.addOverride("/gui/items.png", "/cmm/chocolatemilk.png")).setItemName("ChocolateMilk");
    
    }
    
    public mod_tutorial()
    {
    
      ModLoader.addName(ChocolateMilk, "Chocolate Milk");
    
      ModLoader.addRecipe(new ItemStack(mod_chocolatemilk.ChocolateMilk, 1), new object[]
      {
       " C ", " M ", " G ", Character.valueOf('C'),  new ItemStack(Item.dyePowder, 1, 3), Character.valueOf('M'), Item.bucketMilk, Character.valueOf('G'), Block.glass
      });
    
    }
    
    public void load()
    {
    
    
    
    }
    
    
    public String getVersion()
    {
    
    
      return "Minecraft 1.2.5";
    
    
    }
    
    }
    Posted in: Tutorials
  • 0

    posted a message on Mrsal511's Modding Tutorials (With Video)
    hey it gives me this error:
    == 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_BlackMetal.java:11: error: ';' expected
    				BlackMetalOre = (new BlockBlackMetalOre(300, ModLoader.addOverri
    de("/terrain.png", "/blackmetal/ore.png"))).setHardness(5F).setResistance(9F)Bla
    ckMetalOre.setStepSound(Block.soundStoneFootstep).setBlockName("blackmetalOre");
    
    //the ^ is supposed to be right here:_______________________________________^
    
    1 error
    ==================
    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .

    and this is my code:
    package net.minecraft.src;
    public class mod_BlackMetal extends BaseMod
    {
    
    public static final Block BlackMetalOre;
    
    static
    {
    
      BlackMetalOre = (new BlockBlackMetalOre(300, ModLoader.addOverride("/terrain.png", "/blackmetal/ore.png"))).setHardness(5F).setResistance(9F)BlackMetalOre.setStepSound(Block.soundStoneFootstep).setBlockName("blackmetalOre");
    
    }
    
    public mod_BlackMetal()
    {
    
    
    
    }
    
    public void load()
    {
    
    
    
    }
    
    public String getVersion()
    {
    
      return "MineCraft 1.2.5";
    
    }
    
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader with MC 1.1] How to Make a Mod Tutorials
    hey it gives me this error:

    == 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_BlackMetal.java:11: error: ';' expected
    				BlackMetalOre = (new BlockBlackMetalOre(300, ModLoader.addOverri
    de("/terrain.png", "/blackmetal/ore.png"))).setHardness(5F).setResistance(9F)Bla
    ckMetalOre.setStepSound(Block.soundStoneFootstep).setBlockName("blackmetalOre");
    
    1 error
    ==================
    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .


    this is my code:
    package net.minecraft.src;
    public class mod_BlackMetal extends BaseMod
    {
    
    public static final Block BlackMetalOre;
    
    static
    {
    
      BlackMetalOre = (new BlockBlackMetalOre(300, ModLoader.addOverride("/terrain.png", "/blackmetal/ore.png"))).setHardness(5F).setResistance(9F)BlackMetalOre.setStepSound(Block.soundStoneFootstep).setBlockName("blackmetalOre");
    
    }
    
    public mod_BlackMetal()
    {
    
    
    
    }
    
    public void load()
    {
    
    
    
    }
    
    public String getVersion()
    {
    
      return "MineCraft 1.2.5";
    
    }
    
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader with MC 1.1] How to Make a Mod Tutorials
    hey how do you make it so that a block drops itself when mined?
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    ok thanks
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    Still doesn't work, but only one error message this time. And please tell Ziddia to update his tutorial.

    == 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_BlackMetal.java:11: error: invalid method de
    claration; return type required
    public load()
    ^

    1 error
    ==================

    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .

    And here's the code:

    package net.minecraft.src;
    public class mod_BlackMetal extends BaseMod
    {
    public static final Block blackmetalOre = new BlockBlackMetalOre(97, 0).setHardness(8F).setResistance(5.0F).setBlockName("blackmetalOre");
    public mod_BlackMetal()
    {
    ModLoader.registerBlock(blackmetalOre);
    blackmetalOre.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/blackmetal/blackmetalore.png");
    ModLoader.addName(blackmetalOre, "Black Metal Ore");
    }
    public load()
    {
    }
    public String getVersion()
    {
    return "1.2.5";
    }
    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    Thanks, but it gives me three new errors!

    == 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_BlackMetal.java:3: error: mod_BlackMetal is
    not abstract and does not override abstract method load() in BaseMod
    public class mod_BlackMetal extends BaseMod
    ^

    src\minecraft\net\minecraft\src\mod_BlackMetal.java:9: error: cannot find symbol

    ModLoader.RegisterBlock(blackmetalOre);
    ^

    symbol: method RegisterBlock(Block)
    location: class ModLoader
    src\minecraft\net\minecraft\src\mod_BlackMetal.java:11: error: cannot find symbo
    l
    ModLoader.AddName(blackmetalOre, "Black Metal Ore");
    ^

    symbol: method AddName(Block,String)
    location: class ModLoader
    3 errors
    ==================

    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    Here's the code. It has all the proper spaces and stuff its just that there is the limited space here and such so yeah...

    package net.minecraft.src;

    public class mod_BlackMetal extends BaseMod
    {
    public static final Block blackmetalOre = new BlockBlackMetalOre(97, 0).setHardness(8F).setResistance(5.0F).setBlockName("blackmetalOre");

    public mod_BlackMetal()
    {
    ModLoader.RegisterBlock(blackmetalOre);
    blackmetalOre.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/blackmetal/blackmetalore.png");
    ModLoader.AddName(emeraldOre, "Black Metal Ore");

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

    }
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    == 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_BlackMetal.java:13: error: illegal start of
    expression
    public String Version()
    ^

    src\minecraft\net\minecraft\src\mod_BlackMetal.java:13: error: ';' expected
    public String Version()
    ^

    src\minecraft\net\minecraft\src\mod_BlackMetal.java:18: error: reached end of fi
    le while parsing
    }
    ^

    3 errors
    ==================

    !! Can not find server sources, try decompiling !!
    Press any key to continue . . .


    Help!!! Could this be because I have the new version of minecraft and mcp? If so plz make an updated tutorial. Also I copy-pasted and just changed everything to my mod and ore so i don't know why it isn't working! Every time I try to fix one it gives me 2 more errors about the syntax so I don't know what is wrong with the syntax.
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader]Zid's Tutorials - Not Just ModLoader[12/04/2011]
    It gives me errors that the public in public string version is an illegal start, that it needs an extra ;, and that it ended while it was parsing.
    Posted in: Tutorials
  • 0

    posted a message on EZCraft
    This is a mod that lets you craft slimeballs, spawners, saddles, obsidian, bedrock, diamonds, coal, and end portal frame.

    To download, click here
    To download the recipes document, click here
    Posted in: Minecraft Mods
  • To post a comment, please .