• 0

    posted a message on Bad video card drivers?
    Then the driver isn't even installed yet.
    You can try downloading the driver from these sites.
    http://www.amd.com
    http://www.intel.com
    http://www.nvidia.com
    One of these sites will have the driver meant for your graphics card.
    I suggest trying the Intel one first as the processor also have a graphics "card" inside it.
    Posted in: Legacy Support
  • 0

    posted a message on Bad video card drivers?
    What graphics card do you have?
    You can check it by opening DirectX Diagnostic
    Win XP
    Start > Run > dxdiag.exe

    Win Vista/7
    Start > Search for dxdiag.exe and press enter

    Go to Display tab.
    Posted in: Legacy Support
  • 0

    posted a message on Why do i get this error @ BaseMod?
    You have to add
    public load()

    Replace
    Version()
    with
    getVersion()
    Posted in: Mods Discussion
  • 0

    posted a message on Can Someone Please Help ME
    Just do the thing bakugo suggested as I can confirm it will work.
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft keeps crashing
    Minecraft crashes because of your ATI graphics card driver
    You can try fix the error by doing one of these 2 methods
    Reinstall the driver for your ATI graphics card
    Update your ATI graphics card driver
    Posted in: Legacy Support
  • 0

    posted a message on New Laptop
    When buying a laptop to play Minecraft with
    CPU: Multicore is recommended and the speed should be 2 GHz or higher
    RAM: 4GB atleast as Minecraft will be memory hungry
    Graphics Card: Either Nvidia or ATI and stay away from Intel(HD)Graphics
    Posted in: Legacy Support
  • 0

    posted a message on Help! - Advice needed re: which HP laptop for Minecraft
    None of the laptops have a graphics card that is made for gaming.
    I googled Radeon HD 6380G and I saw it wasn't made for gaming and Minecraft should atleast have a mid end graphics card and both of the laptops have low end so you will get low FPS on both laptops.
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft runs great for 1 minute then slows to a crawl
    Try also adding Java.exe to the list.
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft running extremely slowly (offline)
    What I can say is this
    It's not your graphics card as I got like 160+ FPS with my Nvidia GeForce 8600GT 256MB.
    Unlike you I had a Intel 2.4GHz QuadCore.
    Posted in: Legacy Support
  • 0

    posted a message on Block Making
    I can give a sample code (from my head)

    package net.minemcraft.src;
    
    public class mod_Whiteluigi extends BaseMod
    {
    	public void load()
    	{
    		ModLoader.RegisterBlock(ExampleBlock);
    		ModLoader.AddName(ExampleBlock, "Example Block");
    		ExampleBlock = ModLoader.addOverride("/terrain.png", "/Whiteluigi/ExampleBlock.png");
    		ModLoader.AddRecipe(new ItemStack(ExampleBlock), new Object[]{"#", Character.valueOf('#'), Block.cobblestone});
    	}
    	public string getVersion()
    	{
    		return "V1.0.0";
    	}
    	public static Block ExampleBlock;
    	static
    	{
    		ExampleBlock = new Block(230).setHardness(1.0F).setResistance(1.0F).setStepSound(Block.soundStoneFootstep).setBlockName("ExampleBlock");
    	}
    }

    This will make a new block called Example Block and can be crafted from 1 Cobblestone.
    Posted in: Modification Development
  • 0

    posted a message on Difference Between 1.0 and 1.8
    MC Beta 1.8.1 have no snow biome
    MC Full 1.0.0 Have snow biome

    MC Beta 1.8.1 Can't turn off particles
    MC Full 1.0.0 Can turn off particles

    MC Beta 1.8.1 Is not latest official release
    MC Full 1.0.0 Is latest official release
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft runs great for 1 minute then slows to a crawl
    I saw the specs on your computer by searching your graphics card and I now know why Minaecraft is slow on your laptop.
    You have Nvidia Optimus which means DirectX games will use Nvidia graphics card while OpenGL games like Minecraft will use the integrated graphics inside your CPU.
    Go to Nvidia Control Panel and let Java use only Nvidia and not Intel HD Graphics.
    Posted in: Legacy Support
  • 0

    posted a message on Minecraft not starting
    Have you tried updating the driver for your graphics card? (Not through Windows Update as they are not realible)
    Posted in: Legacy Support
  • 0

    posted a message on Why Icon Bar Is So Damn Huge.?
    Options > Video Settings > GUI Scale
    You can change the size of the GUI/HUD there
    Posted in: Legacy Support
  • 0

    posted a message on Infinite water sourses
    The only way to do that is to code Minecraft's base files and make Water and Lava code somewhat similiar.
    Posted in: Legacy Support
  • To post a comment, please .