• 0

    posted a message on REDSTONE CIRCUIT
    You want to use a T Flip Flop.
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Design Challenge: Block Analyzing Machine
    I have found a way for testing if a block is TNT or Sand/Gravel that doesn't destroy machine parts. Push the block over a hole and power it. Have the block fall down to a BUD switch, with water where the block falls down. If the BUD switch is triggered, then the block is Sand/Gravel. If the BUD switch doesn't trigger, then the block is TNT. No pics yet, I'm still working on ways to make it seem well with other parts.
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Can't connect to minecraft.net with Java 7
    May I ask how to do this, or for a link to a tutorial on this?
    Posted in: Legacy Support
  • 0

    posted a message on Can't connect to minecraft.net with Java 7
    I volunteered to beta test a mod, and it was coded with JDK 7. I updated to Java 7 to play it, but this caused me not to be able to connect to minecraft.net. It also caused my launcher to fail to load, displaying only this:

    <html><body>






    <center>Failed to update news
    java.net.ConnectException: Connection timed out: connect</center>
    </body></html>

    and the normal logo/login screen at the bottom of the page. Uninstalling Java 7 fixes my problems, but I would like to continue beta testing the mod, and I know that other people can connect to minecraft with mods (so I presume they use the launcher) and Java 7. I tried to uninstall all previous versions of Java on my system, and using a clean .jar file. Nothing worked. I am running Windows 7. Could someone please help me?
    Posted in: Legacy Support
  • 0

    posted a message on Sing Portal - Still Alive until a Redstone Miner posts!
    We do what we must because we can.
    Posted in: Forum Games
  • 0

    posted a message on Sing Portal - Still Alive until a Redstone Miner posts!
    It's hard to overstate my satisfaction.
    Posted in: Forum Games
  • 0

    posted a message on Sing Portal - Still Alive until a Redstone Miner posts!
    This was a triumph.

    EDIT: I'm making a note here:
    Posted in: Forum Games
  • 0

    posted a message on Challenge - The Tree Spirit
    Quote from Lilariel

    As far as I'm aware, there's no multiplayer server only used for this at the moment. The only one posted for it earlier was taken off again after everything was burned by griefers. Most of the ones who play on SMP servers do so on private ones I think, while most play it on single-player servers.

    Take lots of pictures instead! :biggrin.gif:


    Alright, thanks. :smile.gif:
    Posted in: Survival Mode
  • 0

    posted a message on Challenge - The Tree Spirit
    Hey, could someone give me the server ip? I really want to try this out, and it seems like more fun if you can freely show off the tree to others.
    Posted in: Survival Mode
  • 0

    posted a message on Corrupt a wish MINECRAFT VERSION
    Okay, but you kill yourself because you are your own enemy.

    I wish for clear windows without the glare marks.
    Posted in: Forum Games
  • 0

    posted a message on Choose carefully and hold an object. Then enter this thead.
    I picked up a can of soda.

    ...

    crap.
    Posted in: Forum Games
  • 0

    posted a message on Corrupt a wish MINECRAFT VERSION
    Granted, but it must be fed 10 wolves per minute that must be fed 10 diamonds per minute or the dragon will eat you.
    I wish for the ability to mine bedrock.
    Posted in: Forum Games
  • 0

    posted a message on Corrupt a wish MINECRAFT VERSION
    Quote from nevar47

    Granted, wait.. is that a hole in your inventory?

    I wish for.


    Granted, but no one will ever know what you wished for.
    I wish for pistons in Minecraft.
    Posted in: Forum Games
  • 0

    posted a message on COUNT TO 100,000,000 FOR A WORLD RECORD!
    3,165

    Only 99,996,836 to go!
    Posted in: Forum Games
  • 0

    posted a message on [Tutorial] Modding with MCP and Modloader Videos [Blocks][1.0.0]
    I was trying to recompile my mod when I got this error:

    == MCP v3.1 ==
    > Recompiling client...
    javac.exe -g -verbose -classpath "jars/bin/minecraft.jar;jars/bin/jinput.jar;jar
    s/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath src/minecraft -d bin/minecr
    aft src/minecraft\net\minecraft\client\*.java src/minecraft\net\minecraft\isom\*
    .java src/minecraft\net\minecraft\src\*.java  conf/patches/*.java failed.
    Return code : 1
    
    == ERRORS FOUND ==
    
    src\minecraft\net\minecraft\src\mod_EctoplasmOre.java:13: <identifier> expected
    EctoplasmOre = new BlockEctoplasmOre(120, ModLoader.addOverride("/terrain.png",
    "/art/EctoplasmOre.png")).setHardness(3.0F).setResistance(5.0F).setBlockName("Ec
    toplasmOre");
    ^
    
    1 error
    ==================
    
    > Done in 1.96 seconds
    > Recompiling server...
    > Done in 7.25 seconds
    Press any key to continue . . .


    Here is my code:

    mod_EctoplasmOre
    package net.minecraft.src;
    // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
    // Jad home page: http://www.kpdus.com/jad.html
    // Decompiler options: packimports(3) braces deadcode 
    
    
    import java.util.Random;
    
    public class mod_EctoplasmOre extends Basemod
    {
    	public static Block EctoplasmOre;
          static
    	  EctoplasmOre = new BlockEctoplasmOre(120, ModLoader.addOverride("/terrain.png", "/art/EctoplasmOre.png")).setHardness(3.0F).setResistance(5.0F).setBlockName("EctoplasmOre");
    	public String Version()
    	   {
    	      return "1.5_01";
    	   }
    	public mod_EctoplasmOre()
    	{
    		EctoplasmOre.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/EctoplasmOre.png");
    		ModLoader.AddName(EctoplasmOre, "Ectoplasm Ore");
    		ModLoader.RegisterBlock(EctoplasmOre);
    		
    	}
    	public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
    	{
    	for(int i = 0; i < 18; i++)
    	    {
    	    int randPosX = chunkX + rand.nextInt(100);
    	    int randPosY = rand.nextInt(16);
    	    int randPosZ = chunkZ + rand.nextInt(100);
    	    (new WorldGenMinable(EctoplasmOre.blockID, 20)).generate(world, rand, randPosX , randPosY , randPosZ );
    	    }
    	}
    
    }


    BlockEctoplasmOre
    package net.minecraft.src; 
     
    import java.util.Random; 
     
    public class BlockEctoplasmOre extends Block 
    { 
            public BlockEctoplasmOre(int i, int j) 
                    { 
                            super(i, j, Material.rock); 
                    } 
             
            public int idDropped(int i, Random random) 
                    { 
                            return mod_EctoplasmOre.EctoplasmOre.blockID; 
                    } 
    }


    I have no clue what that error means, could you please help? Thanks.
    Posted in: Tutorials
  • To post a comment, please .