• 0

    posted a message on Whats your theme?


    OFC!
    Posted in: Forum Games
  • 0

    posted a message on Have Endermen scared you before? Give an example.
    Ofc they have. Like when I didnt notice the update log, and I aws walking outside and there were a very strange sound. I looked back = nothing. Heard it again looked back = a scary creature that looked "scary", I even droped my iron sword :( so I was like .......
    ****!!!!
    Posted in: Survival Mode
  • 0

    posted a message on Mrsal511's Modding Tutorials (With Video)
    why does this not work?!
    package net.minecraft.src;
    import java.util.Random;
    public class mod_Ore extends BaseMod
    {
    //This declares a new block called ________, which is a block of type "_______", has a data value of ____,
    //a hardness of 0.1, a resistance to TNT of 0, and will give off light
    	public static final Block Uranium =
    			 new Uranium(201, 0).setHardness(7.0F).setResistance(5.0F).setLightValue(4.0F).setBlockName("a453");
    	public static final Block Crystalite =
    			 new Crystalite(202, 0).setHardness(6.0F).setResistance(5.0F).setLightValue(4.0F).setBlockName("a123");
    	public mod_Ore()
    	{
    	//This registers our new block
    		ModLoader.registerBlock(Uranium);
    		ModLoader.registerBlock(Crystalite);
    	//This overrides the texture pack and sets the block's texture to ________.png
    		Uranium.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/Uranium.png");
    		Crystalite.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/Crystalite.PNG");
    	//This adds the in game name to our block
    		ModLoader.addName(Uranium, "Uranium Ore");
    		ModLoader.addName(Crystalite, "Crystal");
    	//This adds the smelting recipe to the block, so that you can smelt it in a furnace
    	}
    
    	public String Version()
    	{
    		return "1.0.0";
    	}
    	public void generateSurface(World world, Random rand, int chunkX, int chunkZ)
    	{
    		for(int i = 0; i < 40; i++)
    		{
    			int randPosX = chunkX + rand.nextInt(16);
    			int randPosY = rand.nextInt(60);
    			int randPosZ = chunkZ + rand.nextInt(16);
    			(new WorldGenMinable(mod_Ore.Uranium.blockID, 16)).generate(world, rand, randPosX, randPosY, randPosZ);
    		}
    	}
    
    	@Override
    	public String getVersion() {
    		// TODO Auto-generated method stub
    		return null;
    	}
    
    	@Override
    	public void load() {
    		// TODO Auto-generated method stub
    	  
    	}
    }


    it does not add the block or generate :(
    Posted in: Tutorials
  • 0

    posted a message on TechGuy's Modding Tutorials
    when i am trying the code :
    .setPotionEffect(Potion.hunger.id, 30, 0, 0.8F) it does not work. It sais .setPotionEffect(int, int, int, int, float)
    wwhats wrong?!
    Posted in: Mapping and Modding Tutorials
  • 0

    posted a message on Mrsal511's Modding Tutorials (With Video)
    In 1.2.3 what is the code for Potion effects? I´ve tried .setPotionEffect(Potion.moveSpeed.id, 60, 1, 0, 0.8F);
    It sais in Eclipse : The method setPotionEffect(string) in the type Item is not applicable for the arguments (int, int, int, int, float). What´s wrong :(
    Posted in: Tutorials
  • 0

    posted a message on [ModLoader with MC 1.1] How to Make a Mod Tutorials
    In 1.2.3 what is the code for Potion effects? I´ve tried .setPotionEffect(Potion.moveSpeed.id, 60, 1, 0, 0.8F);
    It sais in Eclipse : The method setPotionEffect(string) in the type Item is not applicable for the arguments (int, int, int, int, float). What´s wrong :(
    Posted in: Tutorials
  • 0

    posted a message on Connor's Happy Land [Survival]
    Server is now offline (an IDIOT called Crendor) Stopped the server. He was an OP now he is banned
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on Connor's Happy Land [Survival]
    Welcome to Happy Creepy Land. It is a kind of new server.
    We have a Main City, an Public/Private island called "Creepia", (Ruled by me).
    We have good staff that can help you.
    But it is a survival server so dont begg for items or Op rank.
    We hope you will have alot of fun there.

    Ip: 84.25.96.193:25565


    (I don't own this server. It is my friend Connorkiller322.
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on looking for plug in experts for survival server.
    Do u using Bukkit? Well i know some stuff with bukkit plugins
    Posted in: Starting Up / Looking For Server
  • 0

    posted a message on A new server
    Quote from quinn1103

    ill test it


    Thanks:D I have pm u. If it dont work tell me.
    Posted in: Starting Up / Looking For Server
  • 0

    posted a message on A new server
    Hey guys! I have started a server but i dont know if it works for other players than me. So it would be kind if some1 tested it... I will pm u the ip if u want to teest!
    Posted in: Starting Up / Looking For Server
  • To post a comment, please .