• 0

    posted a message on Thoughts about 'The End'
    Yea well with the new AI developer Mojang will get lets hope the Enderdragon will get some new attack patterns and what not.
    Posted in: 1.0 Update Discussion
  • 0

    posted a message on Crashed Airships?
    Would be cool for some random generated events (another idea Jeb should implement into the game?), but come off it a ship crashing into the ground? not fat chance like that would be implemented unless their was going to be some space world to be made (I didn't read anywhere on Jeb or Notch's Twitter about a new world being made for Minecraft) so this is obviously some hoax and some attention whores (Excuse my french) are spreading rumors just so they get even more attention, if this was true then why haven't I or anyone else experienced or witness this happen to our world? yes once again Trolls are obvious trolls and this thread needs to be locked >.>
    Posted in: 1.0 Update Discussion
  • 1

    posted a message on Dragon Mounts r46 [WIP]
    Good job, almost impossible for me to steer the dragon in the end, I keep on dying >.<
    Posted in: WIP Mods
  • 0

    posted a message on [1.1] Dragons: Reborn
    I am really starting to like the whole Dragon egg idea people are throwing around in this thread :biggrin.gif:
    The hatchling starts off weak but slowly gets stronger and to full size, when it's full size you have a 0.01% chance in putting a saddle on it so you can ride it, but if you you can't control it, so you have to go to strongholds to find books you have to read in order to control the dragon if you are able to ride it all the day (You know a challenge in being able to become a dragon rider, if you are successful in being able to control the dragon while riding it all the way you get an achievement called : Dragon Rider!)
    Posted in: Minecraft Mods
  • 0

    posted a message on McModGen - Create Minecraft Mods without Coding! [1.0][FORGE]
    ok please do. I'm using MCP correctly and the mod goes into the src folder.
    Posted in: Minecraft Tools
  • 0

    posted a message on need someone who has experience making mods.
    I do use Eclipse and cleared the problems but i still get the said error from the recompiler.
    Posted in: Mods Discussion
  • 0

    posted a message on need someone who has experience making mods.
    Can someone tell me what's wrong with my block and mod_block codes?
    here they are:
    my block code:
    package.net.minecraft.src;
    import java.util.Random;

    public class Enderblock extends Block

    protected Enderblock(int i, int j)
    {
    super (i,j,Material.rock);
    }

    public int idDropped(int i, Random random)
    {
    return mod_Block. Enderblock.blockID;
    }

    public int quantitDropped(Random random)
    {
    return 1;
    }
    }
    }


    my mod_block code:
    package net.minecraft.src;
    import java.util.Random;

    public class mod_Enderblock extends BaseMod
    {
    public static final Block Enderblock = new BlockEnderblock(125,0).setHardness(0,0F).setResistance(5,0F).setLightValue(1,0F).setBlockName("Enderblock");
    public mod_Enderblock()
    {
    ModLoader.RegisterBlock(Enderblock);
    Enderblock.blockIndexInTexture = ModLoader.addOverride("/terrain.png","/Enderblock.png");
    ModLoader.AddName(Enderblock, "Enderblock");
    }

    public String Version()
    {
    return "Enderblock Mod 1.8.1";
    }
    }


    everytime i try to recompile minecrafts src I get this:
    commands.recompile - ERROR - javac: invalid flag: src/minecraft\net\minecraft\src\itemEnderblock.Java
    commands.recompile - ERROR - Usage: javac <options> <source files>
    commands.recompile - ERROR - use -help for a list of possible options

    I want to know why it does this and how I can fix this :smile.gif:
    please be precise and maybe show me what to fix, not just say 'oh fix this" because I'm new to making mods.
    and if you don't have anything nice to say then don't bother coming in here trolling how "this sites lets noobs try to mod."
    Posted in: Mods Discussion
  • 0

    posted a message on McModGen - Create Minecraft Mods without Coding! [1.0][FORGE]
    Your Name: Fatcat1413
    Bug: Every time I recompile the src I get this: commands.recompile - ERROR - javac: invalid flag: src/minecraft\net\minecraft\src\itemEnderblock.Java
    - commands.recompile - ERROR - Usage: javac <options> <source files>
    - commands.recompile - ERROR - use -help for a list of possible options
    What you did when the bug occurred:recompiled the src
    Was the bug in the code? If so, paste it: idk.
    Posted in: Minecraft Tools
  • 0

    posted a message on help please.
    Well corrected the things you told me to correct and still the same error comes up :dry.gif:
    Posted in: Mods Discussion
  • 0

    posted a message on help please.
    I remade my block (once again) using this tut:
    http://www.minecraftforum.net/topic/644946-181-☠-jaydens-modding-tutorials-☠-tutorials-for-everybody/

    I get the same error:
    - javac: invalid flag: src/minecraft\net\minecraft\src\Enderblock.Java
    - commands.recompile - ERROR - Usage: javac <options> <source files>
    - commands.recompile - ERROR - use -help for a list of possible options

    Heres my java block script:
    package.net.minecraft.src;
    import java.util.Random;

    public class Enderblock extends Block

    protected Enderblock(int i, int j)
    {
    super (i,j,Material.Rock);
    }

    public int idDropped(int i, Random random)
    {
    return mod_Block. Enderblock.blockID;
    }

    public int quantitDropped(Random random)
    {
    return 1;
    }
    }
    }

    heres the mod_block script:
    package net.minecraft.src;
    import java.util.Random;

    public class mod_Enderblock extends BaseMod
    {
    public static final Block Enderblock = new BlockEnderblock(999,0) ,setHardness(0,0F) ,setResistance(5,0F) ,setLightValue(1,0F) ,setBlockName("Enderblock");
    public mod_Enderblock()
    {
    ModLoader.RegisterBlock(Enderblock);
    Enderblock.blockIndexInTexture = ModLoader.addOverride("/terrain.png","/Enderblock.png");
    ModLoader.AddName(Enderblock, "Enderblock");
    }

    public String Version()
    {
    return "Enderblock Mod 1.8.1";
    }
    }



    Please if you can help me. Im just understanding Java so any real help like showing me what needs to go where would be really helpful to me :smile.gif:
    Posted in: Mods Discussion
  • 0

    posted a message on McModGen - Create Minecraft Mods without Coding! [1.0][FORGE]
    this program is messed up. you cant recompile worth the crap with blocks made from this. 6 errors I got. so I made a block myself and only get 1 error. better to make the blocks yourself :wink.gif:
    Posted in: Minecraft Tools
  • 0

    posted a message on [1.8.1] NECROMANCY v6.3b build your own mob army
    It loads the world then says saving chunk and runs error report >.>
    like i said 6.0 loaded but it did nothing really >.>
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.8.1] NECROMANCY v6.3b build your own mob army
    Runs then error report:



    --- BEGIN ERROR REPORT 6800c34a --------
    Generated 10/16/11 9:29 PM

    Minecraft: Minecraft Beta 1.8.1
    OS: Windows 7 (x86) version 6.1
    Java: 1.7.0, Oracle Corporation
    VM: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
    LWJGL: 2.4.2
    OpenGL: Intel Pineview Platform version 1.4.0 - Build 8.14.10.2230, Intel

    java.lang.NullPointerException
    at qi.c(SourceFile:72)
    at PlayerHelper.populateItemNames(PlayerHelper.java:607)
    at PlayerHelper.<init>(PlayerHelper.java:352)
    at qs.initPlayerHelper(EntityPlayerSP.java:656)
    at qs.<init>(EntityPlayerSP.java:51)
    at hw.b(SourceFile:79)
    at xu.b(SourceFile:139)
    at net.minecraft.client.Minecraft.a(SourceFile:1566)
    at net.minecraft.client.Minecraft.a(SourceFile:1527)
    at net.minecraft.client.Minecraft.a(SourceFile:1447)
    at jv.c(SourceFile:161)
    at jv.a(SourceFile:119)
    at qr.a(SourceFile:72)
    at qr.f(SourceFile:120)
    at qr.i(SourceFile:108)
    at net.minecraft.client.Minecraft.k(SourceFile:1197)
    at net.minecraft.client.Minecraft.run(SourceFile:666)
    at java.lang.Thread.run(Thread.java:722)
    --- END ERROR REPORT 25c4c861 ----------

    6.0 atleast didnt run error report but didn't work >.>
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.7.10] Kenshiro Mod
    --- BEGIN ERROR REPORT 728d70d8 --------
    Generated 10/16/11 5:30 PM

    Minecraft: Minecraft Beta 1.8.1
    OS: Windows 7 (x86) version 6.1
    Java: 1.7.0, Oracle Corporation
    VM: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
    LWJGL: 2.4.2
    OpenGL: Intel Pineview Platform version 1.4.0 - Build 8.14.10.2230, Intel

    java.lang.NoSuchMethodError: iw.b(D)V
    at AS_KenshiroRenderHooks.render(AS_KenshiroRenderHooks.java:31)
    at AS_KenshiroRenderHooks.a(AS_KenshiroRenderHooks.java:301)
    at aam.a(aam.java:125)
    at aam.a(aam.java:119)
    at i.a(RenderGlobal.java:341)
    at iw.a(EntityRenderer.java:1006)
    at iw.b(EntityRenderer.java:801)
    at EntityRendererProxy.b(EntityRendererProxy.java:15)
    at net.minecraft.client.Minecraft.run(SourceFile:689)
    at java.lang.Thread.run(Thread.java:722)
    --- END ERROR REPORT 8e6dbc5b ----------

    thats the error report I get. minecraft works then as soon as I Load a level it workd for a second then turns to black screen :|

    Edit:
    so it doesn't work with optifine?
    thats the only thing that clears my extreme lagg on 1.8.1, without that then I wouldn't be able to play minecraft at all. Can you make it compatible with this and other opti mods.
    Posted in: Minecraft Mods
  • 0

    posted a message on DragonCraft (BETA) - Updated for 1.9 Pre-Release Part 2
    obvious troll is obvious >.> he would have released something. its like his other mod. "got to wait to [said date] * date comes and yet no release* "oops got to wait till another [said date]". I say he needs to get banned for obvious trolling >.>
    Posted in: WIP Mods
  • To post a comment, please .