• 0

    posted a message on Minecraft 1.7.2 Small Survival Server (White-Listed) All Ages
    Hey,
    Im 16, decent at the game and am alright with redstoning, really would like to join a small server that knows each other and can have some good co-op time. This looks like a good one :) i've been playing for 2 and 1/2 years.
    IGN: Dr_Octagonapus_
    Posted in: PC Servers
  • 0

    posted a message on [1.6] Vanilla Minecraft Server [Snapshot] [24 slots] [Whitelisted] - Dead
    1. IGN: Dr_Octagonapus_
    2. Age: 15
    3. Why you want to join / what you will do (Detail helps): Because it's a snapshot server and it's got the rules to go with it. I will build to the best of my ability and always cut trees down trees fully. And i play quite alot :)
    4. Have you been banned before, and if so why?: No
    Posted in: PC Servers
  • 0

    posted a message on The Snapshot Server
    Quote from _Kolbjorn_

    awss_sultan and twogbsd murdered me, greifed my house, stole my stuff and wouldn't give it back...check the logs if you need proof.

    Yea i can testify to this. I asked them to cooperate but when they didn't return the stolen items, i started aggressive negotiations. I got most of the stuff back and said i would return their stuff but they keep trying to kill me and so it kinda escalated. They have broken two rules, but you make the rules blonde and if you don't wanna ban them then i have to respect your decision. BTW you can check the logs.
    Posted in: PC Servers
  • 0

    posted a message on The Snapshot Server
    Cheers!

    EDIT: Error you are not whitelisted on the server...
    Posted in: PC Servers
  • 0

    posted a message on The Snapshot Server
    1. Minecraft Username: Dr_Octagonapus_


    2. How Long You Have Played Minecraft: Since Indev/First Beta


    3. How Often You Can Play: Most Days couple of hours at a time :)


    4. Why You Want To Join: Because this is one of the few Snapshot Servers And I'm in the mood.

    5. Anything Else You Want To Add [Optional]: No not really
    Posted in: PC Servers
  • 0

    posted a message on Need help with Lightning Striking Blocks
    Quote from Th3Bl0ck

    Try using
     public void onBlockClicked(World par1World, int par2, int par3, int par4, EntityPlayer par5EntityPlayer) 

    i just copied this from the block.java file. I don't know if it 'll work.


    Haha Sweet this fixed it :)
    Posted in: Modification Development
  • 0

    posted a message on Need help with Lightning Striking Blocks
    Sweet i'll try it out :)

    Quote from redmen800

    Just a little tip: Try adding @Override before the method to see if your remembered/ spelled it correctly. It will give an error if you didn't(delete @Override when you fixed it).

    Didn't know that so thanks!!
    Posted in: Modification Development
  • 0

    posted a message on Need help with Lightning Striking Blocks
    Quote from WingsOfLife

    Try using the method public void onEntityWalking(World par1World, int par2, int par3, int par4, Entity par5Entity) {} that should fix your error.

    Thanks a heap it worked!!!! Just got one more question,
    i also have a block that did the same thing but only when rightclicked or activated...and its not working either. Tried a couple of thing but since modloader changed a bit i've kinda not been able to work it out...Ant ideas? Code:
    package net.minecraft.src;
    import java.util.Random;
    // Referenced classes of package net.minecraft.src:
    //		    Block, Material, mod_lightningbrick, EntityLightningBolt,
    //		    World, EntityPlayer
    public class BlockLightningBrick extends Block
    {
        public BlockLightningBrick(int i, int j)
        {
    	    super(i, Material.rock);
        }
        public int idDropped(int i, Random random)
        {
    	    return mod_effectivebricks.lightningbrick.blockID;
        }
        public int quantityDropped(Random random)
        {
    	    return 1;
        }
        public void blockActivated(World world, int i, int j, int k, EntityPlayer entityplayer)
        {
    	    world.spawnEntityInWorld(new EntityLightningBolt(world, i, j, k));
    	    return;
    	   
        }
    }

    And yes i have tried replacing some of the code above with the code you just gave me :P, no i didn't work :(
    Posted in: Modification Development
  • 0

    posted a message on Need help with Lightning Striking Blocks
    So i need some help with a block that when an entity (any entity) walks over a block, lightning strikes the area. This is obviously for 1.5.2 and Modloader. The Code so far;
    package net.minecraft.src;
    import java.util.Random;
    
    public class BlockAutoLightningBrick extends Block
    {
    public BlockAutoLightningBrick(int i, int j)
    {
    	 super(i, Material.rock);
    }
    public int idDropped(int i, Random random)
    {
    	 return mod_effectivebricks.autolightningbrick.blockID;
    }
    public int quantityDropped(Random random)
    {
    	 return 1;
    }
    public boolean onEntityColliededWithBlock(World par1World, int par2, int par3, int par4, Entity par5Entity)
    {
    	 par1World.addWeatherEffect(new EntityLightningBolt(par1World, par2, par3, par4));
    	 return true;
    	
    }
    	
    }


    Can't seem to get the lightning spawning on the block...Thanks in advance!!
    Posted in: Modification Development
  • 0

    posted a message on [1.2.5/1.5.2] Dr O's Mods - YEA IM BACK!
    Gems Mod updated for 1.5.2!!
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.2.5/1.5.2] Dr O's Mods - YEA IM BACK!
    Hey Updated Gems to v9 for 1.3.2
    Posted in: Minecraft Mods
  • 0

    posted a message on Hopefully Fixable Updating Problem! Need Help!
    Oh sorry for the bother. I forgot about the experience gained!Thank you
    Posted in: Modification Development
  • 0

    posted a message on Hopefully Fixable Updating Problem! Need Help!
    Well errors are about the blocks mainly...saying that they are invalid and all that

    EDIT: Hold on im getting the error's directly from eclipseModLoader.addSmelting(TopazOre.blockID, new ItemStack(RefinedTopazOre, 1));
    My smelting code
    The error:
    The method addSmelting(int, ItemStack, float) in the type ModLoader is not applicable for the arguments (int, ItemStack)
    Posted in: Modification Development
  • 0

    posted a message on Hopefully Fixable Updating Problem! Need Help!
    Ok so i have made some mods and they have been around since 1.0.0. I know how to make a mods and how to obfuscate - reobf and get my mods src. So when i put my mod src ( The Java files) into the new 1.3.2 src in MCP i get 93 errors!

    In the 1.2.5 MCP it's fine with no errors! I hope im not the only one and that someone knows how to fix this..

    Thank in advance
    -Dr O
    Posted in: Modification Development
  • 0

    posted a message on [1.2.5/1.5.2] Dr O's Mods - YEA IM BACK!
    Hey everyone! I'll update my mods as soon as Modloader is updated...til then i can't update. So you'll have to wait. Ok Have a great week!
    Posted in: Minecraft Mods
  • To post a comment, please .