• 0

    posted a message on Modding Help?
    Hey, I'm a new modder, and I'm trying to make a mod called the rainbows mod.
    Now I know what your thinking "A newb like him could never create shiny things like that!" Well, I'm not trying -_- It adds new ores and ingots, I'm coding it right now, and I'm coming up with lots of errors in Eclipse,
    This is the code for the mod itself, it's giving me errors.

    package net.minecraft.src;
    import java.util.Random;
    public class mod_rainbow extends BaseMod
    {
    
    public static final Block RainbowOre;
    
    
    static
    {
    
      RainbowOre = (new BlockRainbowore(123, ModLoader.addOverride("/terrain.png", "/mods/rainbowore.png"))).setHardness(3F).setResistance(5F).setStepSound(Block.soundStoneFootstep).setBlockName("RainbowOre");
      
    
    }
    
    
    {
    
    }
    
    
    public void load()
    {
    
    
    }
    
    public mod_rainbow()
    {
    
      ModLoader.registerBlock(RainbowOre);
      ModLoader.addName(RainbowOre,  "Rainbowinium Ore");
    
      ModLoader.addSmelting(Block.planks.blockID, new ItemStack(RainbowOre, 1));
    }
    
    public void GenerateSurface(World world, Random rand, int chunkx, int chunkz);
    {
      //Tutorial Block
    
      for(int l = 0; l<45; l++)
      {
      
       int i1 = chunkx +rand.nextInt(16);
       int j1 = rand.nextInt(64);
       int k1 = chunkz +rand.nextInt(16);
      
       (new WorldGenMinable(RainbowOre.blockID, 6)).generate(world, rand, i1, j1, k1);
      }
    
      //end Tutorial Block
    }
    
    
    public String getVersion()
    {
    
      return "Raaainbows";
    
    }
    
    }


    In various places it hands me some errors, anyone that can help?
    Oh, by the way in the line with RainbowOre = at the beginning, the line directly below is on the same line.
    Posted in: Legacy Support
  • 0

    posted a message on [Adv] MindLag Beta Signup!
    Quote from swampshark19

    I would like to try your map please.

    Ok, it's still in the working, mostly a shell with some storyline, and the first test. I'm getting to work tonight.
    Posted in: Maps
  • 0

    posted a message on [Adv] MindLag Beta Signup!
    Hai ppl on the interwebs. I'm starting my first custom map here. It's nooby, and isn't finished but, if you message me you can get a Beta link to my dropbox to download the private beta. Screenshots will be added once it goes public. Have fun!
    Posted in: Maps
  • 0

    posted a message on Minecraft Singleplayer Crashes!
    Here's the error log. I'm crashing constantly, and randomly.

    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x690edb84, pid=3848, tid=4092
    #
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode windows-x86 )
    # Problematic frame:
    # C  [atioglxx.dll+0xedb84]
    #
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #
    
    ---------------  T H R E A D  ---------------
    
    Current thread (0x4bd0d400):  JavaThread "Minecraft main thread" daemon [_thread_in_native, id=4092, stack(0x4c0f0000,0x4c140000)]
    
    siginfo: ExceptionCode=0xc0000005, reading address 0x40e00004
    
    Registers:
    EAX=0x40e00000, EBX=0x4c4ed040, ECX=0x40e00000, EDX=0x000005d4
    ESP=0x4c13f264, EBP=0x4c13f2a0, ESI=0x4c4ed040, EDI=0x6a0aced8
    EIP=0x690edb84, EFLAGS=0x00010206
    
    Register to memory mapping:
    
    EAX=0x40e00000
    0x40e00000 is an unallocated location in the heap
    
    EBX=0x4c4ed040
    0x4c4ed040 is pointing to unknown location
    
    ECX=0x40e00000
    0x40e00000 is an unallocated location in the heap
    
    EDX=0x000005d4
    0x000005d4 is pointing to unknown location
    
    ESP=0x4c13f264
    0x4c13f264 is pointing into the stack for thread: 0x4bd0d400
    "Minecraft main thread" daemon prio=6 tid=0x4bd0d400 nid=0xffc runnable [0x4c13f000]
       java.lang.Thread.State: RUNNABLE
    
    EBP=0x4c13f2a0
    0x4c13f2a0 is pointing into the stack for thread: 0x4bd0d400
    "Minecraft main thread" daemon prio=6 tid=0x4bd0d400 nid=0xffc runnable [0x4c13f000]
       java.lang.Thread.State: RUNNABLE
    
    ESI=0x4c4ed040
    0x4c4ed040 is pointing to unknown location
    
    EDI=0x6a0aced8
    0x6a0aced8 is pointing to unknown location
    
    
    Top of Stack: (sp=0x4c13f264)
    0x4c13f264:   6a0aced8 4c4ed040 4c13f2a0 00000de1
    0x4c13f274:   00002803 40e00000 00000000 690e0a18
    0x4c13f284:   6a0aced8 4bdf5000 4c4ed040 4c13f2a0
    0x4c13f294:   00000000 4c13f28c 00000006 000000a8
    0x4c13f2a4:   690e27b1 000000a8 4c4ed040 4c13f318
    0x4c13f2b4:   00000000 690dff6e 00001405 4bdf5000
    0x4c13f2c4:   4bd0d400 4c13f308 4c147b07 000000a8
    0x4c13f2d4:   00001405 4bdf5000 00e2d8c0 4bd0d518 
    
    Instructions: (pc=0x690edb84)
    0x690edb74:   00 00 55 56 57 8d a4 24 00 00 00 00 8b 4c 24 14
    0x690edb84:   8b 51 04 8d 41 0c 8d 54 0a 0c 3b c2 89 44 24 0c 
    
    
    Stack: [0x4c0f0000,0x4c140000],  sp=0x4c13f264,  free space=316k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [atioglxx.dll+0xedb84]
    
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J  org.lwjgl.opengl.GL11.nglCallLists(IILjava/nio/Buffer;IJ)V
    J  org.lwjgl.opengl.GL11.glCallLists(Ljava/nio/IntBuffer;)V
    J  ng.a()V
    J  l.a(ID)V
    J  l.a(IIID)I
    J  l.a(Laar;ID)I
    J  kz.a(FJ)V
    J  kz.b(F)V
    J  EntityRendererProxy.b(F)V
    J  net.minecraft.client.Minecraft.x()V
    J  net.minecraft.client.Minecraft.run()V
    j  java.lang.Thread.run()V+11
    v  ~StubRoutines::call_stub
    
    ---------------  P R O C E S S  ---------------
    
    Java Threads: ( => current thread )
      0x4bdbac00 JavaThread "File IO Thread" daemon [_thread_blocked, id=4032, stack(0x4fcc0000,0x4fd10000)]
      0x4bcd7400 JavaThread "Thread-14" daemon [_thread_blocked, id=228, stack(0x4e8f0000,0x4e940000)]
      0x4bcef400 JavaThread "Thread-13" daemon [_thread_blocked, id=1468, stack(0x4e8a0000,0x4e8f0000)]
      0x4bdbc800 JavaThread "Thread-12" daemon [_thread_in_native, id=932, stack(0x4e850000,0x4e8a0000)]
    =>0x4bd0d400 JavaThread "Minecraft main thread" daemon [_thread_in_native, id=4092, stack(0x4c0f0000,0x4c140000)]
      0x4bce8800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=1612, stack(0x49470000,0x494c0000)]
      0x49189000 JavaThread "TimerQueue" daemon [_thread_blocked, id=2624, stack(0x4bb40000,0x4bb90000)]
      0x490cf800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=3676, stack(0x497f0000,0x49840000)]
      0x003a6400 JavaThread "DestroyJavaVM" [_thread_blocked, id=2800, stack(0x009c0000,0x00a10000)]
      0x490ffc00 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3124, stack(0x494c0000,0x49510000)]
      0x4910e800 JavaThread "AWT-Shutdown" [_thread_blocked, id=3712, stack(0x492a0000,0x492f0000)]
      0x4903e000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=1628, stack(0x492f0000,0x49340000)]
      0x49030000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1588, stack(0x49250000,0x492a0000)]
      0x48ce7800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3900, stack(0x48f30000,0x48f80000)]
      0x48cd8c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=424, stack(0x48ee0000,0x48f30000)]
      0x48cd7400 JavaThread "Attach Listener" daemon [_thread_blocked, id=676, stack(0x48e90000,0x48ee0000)]
      0x48cd6000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3892, stack(0x48e40000,0x48e90000)]
      0x48cc9400 JavaThread "Finalizer" daemon [_thread_blocked, id=1020, stack(0x48df0000,0x48e40000)]
      0x48cc4800 JavaThread "Reference Handler" daemon [_thread_blocked, id=3576, stack(0x48da0000,0x48df0000)]
    
    Other Threads:
      0x48cc0c00 VMThread [stack: 0x48d50000,0x48da0000] [id=4020]
      0x48ce9800 WatcherThread [stack: 0x48f80000,0x48fd0000] [id=1116]
    
    VM state:not at safepoint (normal execution)
    
    VM Mutex/Monitor currently owned by a thread: None
    
    Heap
     def new generation   total 157376K, used 128487K [0x02a90000, 0x0d550000, 0x17fe0000)
      eden space 139904K,  85% used [0x02a90000, 0x09f9fe78, 0x0b330000)
      from space 17472K,  49% used [0x0c440000, 0x0ccaa168, 0x0d550000)
      to   space 17472K,   0% used [0x0b330000, 0x0b330000, 0x0c440000)
     tenured generation   total 349568K, used 61182K [0x17fe0000, 0x2d540000, 0x42a90000)
       the space 349568K,  17% used [0x17fe0000, 0x1bb9fbb0, 0x1bb9fc00, 0x2d540000)
     compacting perm gen  total 17920K, used 17742K [0x42a90000, 0x43c10000, 0x46a90000)
       the space 17920K,  99% used [0x42a90000, 0x43be3b20, 0x43be3c00, 0x43c10000)
    No shared spaces configured.
    
    Dynamic libraries:
    0x00400000 - 0x00424000 	C:\Program Files\Java\jre6\bin\javaw.exe
    0x7c900000 - 0x7c9b2000 	C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000 	C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 	C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000 	C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000 	C:\WINDOWS\system32\Secur32.dll
    0x7e410000 - 0x7e4a1000 	C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000 	C:\WINDOWS\system32\GDI32.dll
    0x7c340000 - 0x7c396000 	C:\Program Files\Java\jre6\bin\msvcr71.dll
    0x6d7f0000 - 0x6da96000 	C:\Program Files\Java\jre6\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000 	C:\WINDOWS\system32\WINMM.dll
    0x6d7a0000 - 0x6d7ac000 	C:\Program Files\Java\jre6\bin\verify.dll
    0x6d320000 - 0x6d33f000 	C:\Program Files\Java\jre6\bin\java.dll
    0x6d280000 - 0x6d288000 	C:\Program Files\Java\jre6\bin\hpi.dll
    0x76bf0000 - 0x76bfb000 	C:\WINDOWS\system32\PSAPI.DLL
    0x6d7e0000 - 0x6d7ef000 	C:\Program Files\Java\jre6\bin\zip.dll
    0x6d000000 - 0x6d14a000 	C:\Program Files\Java\jre6\bin\awt.dll
    0x73000000 - 0x73026000 	C:\WINDOWS\system32\WINSPOOL.DRV
    0x77c10000 - 0x77c68000 	C:\WINDOWS\system32\msvcrt.dll
    0x76390000 - 0x763ad000 	C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761e000 	C:\WINDOWS\system32\ole32.dll
    0x773d0000 - 0x774d3000 	C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\COMCTL32.dll
    0x77f60000 - 0x77fd6000 	C:\WINDOWS\system32\SHLWAPI.dll
    0x5ad70000 - 0x5ada8000 	C:\WINDOWS\system32\uxtheme.dll
    0x7c9c0000 - 0x7d1d7000 	C:\WINDOWS\system32\shell32.dll
    0x6d230000 - 0x6d27f000 	C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x4fdd0000 - 0x4ff76000 	C:\WINDOWS\system32\d3d9.dll
    0x49340000 - 0x49346000 	C:\WINDOWS\system32\d3d8thk.dll
    0x77c00000 - 0x77c08000 	C:\WINDOWS\system32\VERSION.dll
    0x6d600000 - 0x6d613000 	C:\Program Files\Java\jre6\bin\net.dll
    0x71ab0000 - 0x71ac7000 	C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 	C:\WINDOWS\system32\WS2HELP.dll
    0x6d620000 - 0x6d629000 	C:\Program Files\Java\jre6\bin\nio.dll
    0x71a50000 - 0x71a8f000 	C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000 	C:\WINDOWS\system32\DNSAPI.dll
    0x68000000 - 0x68036000 	C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a74000 	C:\WINDOWS\system32\USERENV.dll
    0x76d60000 - 0x76d79000 	C:\WINDOWS\system32\iphlpapi.dll
    0x76fb0000 - 0x76fb8000 	C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000 	C:\WINDOWS\system32\WLDAP32.dll
    0x64000000 - 0x64025000 	C:\Program Files\Bonjour\mdnsNSP.dll
    0x5b860000 - 0x5b8b5000 	C:\WINDOWS\system32\netapi32.dll
    0x76fc0000 - 0x76fc6000 	C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000 	C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000 	C:\WINDOWS\System32\wshtcpip.dll
    0x6d780000 - 0x6d788000 	C:\Program Files\Java\jre6\bin\sunmscapi.dll
    0x77a80000 - 0x77b15000 	C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000 	C:\WINDOWS\system32\MSASN1.dll
    0x4c140000 - 0x4c1ab000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\lwjgl.dll
    0x5ed00000 - 0x5edcc000 	C:\WINDOWS\system32\OPENGL32.dll
    0x68b20000 - 0x68b40000 	C:\WINDOWS\system32\GLU32.dll
    0x73760000 - 0x737ab000 	C:\WINDOWS\system32\DDRAW.dll
    0x73bc0000 - 0x73bc6000 	C:\WINDOWS\system32\DCIMAN32.dll
    0x6d350000 - 0x6d356000 	C:\Program Files\Java\jre6\bin\jawt.dll
    0x69000000 - 0x694ff000 	C:\WINDOWS\system32\atioglxx.dll
    0x4e6d0000 - 0x4e6e3000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\jinput-dx8.dll
    0x6ce10000 - 0x6ce48000 	C:\WINDOWS\system32\DINPUT8.dll
    0x688f0000 - 0x688f9000 	C:\WINDOWS\system32\HID.DLL
    0x77920000 - 0x77a13000 	C:\WINDOWS\system32\SETUPAPI.DLL
    0x76c30000 - 0x76c5e000 	C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000 	C:\WINDOWS\system32\IMAGEHLP.dll
    0x496c0000 - 0x496d2000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\jinput-raw.dll
    0x4e940000 - 0x4ea69000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\OpenAL32.dll
    0x73f10000 - 0x73f6c000 	C:\WINDOWS\system32\dsound.dll
    0x72d20000 - 0x72d29000 	C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000 	C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000 	C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000 	C:\WINDOWS\system32\midimap.dll
    0x73ee0000 - 0x73ee4000 	C:\WINDOWS\system32\KsUser.dll
    
    VM Arguments:
    jvm_args: -Xms512m -Xmx1024m 
    java_command: C:\Documents and Settings\Amber Lemke\Desktop\Minecraft.exe
    Launcher Type: SUN_STANDARD
    
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Java\jre6\bin
    USERNAME=Amber Lemke
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 3 Stepping 4, GenuineIntel
    
    
    
    ---------------  S Y S T E M  ---------------
    
    OS: Windows XP Build 2600 Service Pack 3
    
    CPU:total 1 (1 cores per cpu, 2 threads per core) family 15 model 3 stepping 4, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ht
    
    Memory: 4k page, physical 784464k(33320k free), swap 1920096k(649940k free)
    
    vm_info: Java HotSpot(TM) Client VM (19.1-b02) for windows-x86 JRE (1.6.0_24-b07), built on Feb  2 2011 17:44:41 by "java_re" with MS VC++ 7.1 (VS2003)
    
    time: Mon Jan 16 17:29:33 2012
    elapsed time: 5020 seconds


    Any Java experts able to jam their face into the screen and find out what the heck this means?
    Posted in: Legacy Support
  • 0

    posted a message on [1.0.1] Random Super-Flat Crashes
    I'm lazy, and I'm gonna post a log and gonna tell you what I was doing when Minecraft crashed.

    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x690e09de, pid=3432, tid=1468
    #
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode windows-x86 )
    # Problematic frame:
    # C  [atioglxx.dll+0xe09de]
    #
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #
    
    ---------------  T H R E A D  ---------------
    
    Current thread (0x4bd59000):  JavaThread "Minecraft main thread" daemon [_thread_in_native, id=1468, stack(0x4c120000,0x4c170000)]
    
    siginfo: ExceptionCode=0xc0000005, reading address 0x68360228
    
    Registers:
    EAX=0x68360218, EBX=0x00000000, ECX=0x4c51d040, EDX=0x00000b4a
    ESP=0x4c16f038, EBP=0x4c16f050, ESI=0x4c51d040, EDI=0x68360218
    EIP=0x690e09de, EFLAGS=0x00010206
    
    Register to memory mapping:
    
    EAX=0x68360218
    0x68360218 is pointing to unknown location
    
    EBX=0x00000000
    0x00000000 is pointing to unknown location
    
    ECX=0x4c51d040
    0x4c51d040 is pointing to unknown location
    
    EDX=0x00000b4a
    0x00000b4a is pointing to unknown location
    
    ESP=0x4c16f038
    0x4c16f038 is pointing into the stack for thread: 0x4bd59000
    "Minecraft main thread" daemon prio=6 tid=0x4bd59000 nid=0x5bc runnable [0x4c16f000]
       java.lang.Thread.State: RUNNABLE
    
    EBP=0x4c16f050
    0x4c16f050 is pointing into the stack for thread: 0x4bd59000
    "Minecraft main thread" daemon prio=6 tid=0x4bd59000 nid=0x5bc runnable [0x4c16f000]
       java.lang.Thread.State: RUNNABLE
    
    ESI=0x4c51d040
    0x4c51d040 is pointing to unknown location
    
    EDI=0x68360218
    0x68360218 is pointing to unknown location
    
    
    Top of Stack: (sp=0x4c16f038)
    0x4c16f038:   4beb5004 4c51d040 4c16f050 00000000
    0x4c16f048:   4c16f03c 00000000 00000077 690e27b1
    0x4c16f058:   00000078 4c51d040 4c16f0c8 00000000
    0x4c16f068:   690dff6e 00001405 4beb5000 4bd59000
    0x4c16f078:   4c16f0b8 4c177b07 00000078 00001405
    0x4c16f088:   4beb5000 00e24b40 4bd59118 4c16f0b8
    0x4c16f098:   00000078 00001405 4c16f0d8 00000000
    0x4c16f0a8:   5ed028e4 00000000 00000000 692f4a96 
    
    Instructions: (pc=0x690e09de)
    0x690e09ce:   f1 e8 ec fc ff ff 8b f8 85 ff 0f 84 bd 18 00 00
    0x690e09de:   8b 47 10 85 c0 0f 84 b2 18 00 00 8b 86 c8 81 00 
    
    
    Stack: [0x4c120000,0x4c170000],  sp=0x4c16f038,  free space=316k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [atioglxx.dll+0xe09de]
    
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J  org.lwjgl.opengl.GL11.nglCallLists(IILjava/nio/Buffer;IJ)V
    J  org.lwjgl.opengl.GL11.glCallLists(Ljava/nio/IntBuffer;)V
    J  ng.a()V
    J  l.a(ID)V
    J  l.a(IIID)I
    J  l.a(Laar;ID)I
    J  kz.a(FJ)V
    J  kz.b(F)V
    J  net.minecraft.client.Minecraft.x()V
    J  net.minecraft.client.Minecraft.run()V
    j  java.lang.Thread.run()V+11
    v  ~StubRoutines::call_stub
    
    ---------------  P R O C E S S  ---------------
    
    Java Threads: ( => current thread )
      0x4bd0f800 JavaThread "File IO Thread" daemon [_thread_blocked, id=1444, stack(0x4f9f0000,0x4fa40000)]
      0x48cf0c00 JavaThread "Thread-14" daemon [_thread_blocked, id=3056, stack(0x4eb10000,0x4eb60000)]
      0x490c3400 JavaThread "Thread-13" daemon [_thread_blocked, id=948, stack(0x4eac0000,0x4eb10000)]
      0x4bda5000 JavaThread "Thread-12" daemon [_thread_in_native, id=936, stack(0x4ea70000,0x4eac0000)]
    =>0x4bd59000 JavaThread "Minecraft main thread" daemon [_thread_in_native, id=1468, stack(0x4c120000,0x4c170000)]
      0x4bd54800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=3460, stack(0x4c0d0000,0x4c120000)]
      0x491a7800 JavaThread "TimerQueue" daemon [_thread_blocked, id=2536, stack(0x49660000,0x496b0000)]
      0x49136800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=752, stack(0x49470000,0x494c0000)]
      0x003a6400 JavaThread "DestroyJavaVM" [_thread_blocked, id=3440, stack(0x009c0000,0x00a10000)]
      0x4909c000 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3536, stack(0x494c0000,0x49510000)]
      0x4903e000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=620, stack(0x492f0000,0x49340000)]
      0x49029800 JavaThread "AWT-Shutdown" [_thread_blocked, id=2692, stack(0x492a0000,0x492f0000)]
      0x49030000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1888, stack(0x49250000,0x492a0000)]
      0x48ce7800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3544, stack(0x48f30000,0x48f80000)]
      0x48cd8c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1364, stack(0x48ee0000,0x48f30000)]
      0x48cd7400 JavaThread "Attach Listener" daemon [_thread_blocked, id=1428, stack(0x48e90000,0x48ee0000)]
      0x48cd6000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=840, stack(0x48e40000,0x48e90000)]
      0x48cc9400 JavaThread "Finalizer" daemon [_thread_blocked, id=1404, stack(0x48df0000,0x48e40000)]
      0x48cc4800 JavaThread "Reference Handler" daemon [_thread_blocked, id=224, stack(0x48da0000,0x48df0000)]
    
    Other Threads:
      0x48cc0c00 VMThread [stack: 0x48d50000,0x48da0000] [id=848]
      0x48ce9800 WatcherThread [stack: 0x48f80000,0x48fd0000] [id=3540]
    
    VM state:not at safepoint (normal execution)
    
    VM Mutex/Monitor currently owned by a thread: None
    
    Heap
     def new generation   total 157376K, used 85289K [0x02a90000, 0x0d550000, 0x17fe0000)
      eden space 139904K,  54% used [0x02a90000, 0x0754e6a8, 0x0b330000)
      from space 17472K,  50% used [0x0c440000, 0x0cccbd68, 0x0d550000)
      to   space 17472K,   0% used [0x0b330000, 0x0b330000, 0x0c440000)
     tenured generation   total 349568K, used 63569K [0x17fe0000, 0x2d540000, 0x42a90000)
       the space 349568K,  18% used [0x17fe0000, 0x1bdf46a8, 0x1bdf4800, 0x2d540000)
     compacting perm gen  total 17408K, used 17232K [0x42a90000, 0x43b90000, 0x46a90000)
       the space 17408K,  98% used [0x42a90000, 0x43b64370, 0x43b64400, 0x43b90000)
    No shared spaces configured.
    
    Dynamic libraries:
    0x00400000 - 0x00424000 	C:\Program Files\Java\jre6\bin\javaw.exe
    0x7c900000 - 0x7c9b2000 	C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000 	C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 	C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000 	C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000 	C:\WINDOWS\system32\Secur32.dll
    0x7e410000 - 0x7e4a1000 	C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000 	C:\WINDOWS\system32\GDI32.dll
    0x7c340000 - 0x7c396000 	C:\Program Files\Java\jre6\bin\msvcr71.dll
    0x6d7f0000 - 0x6da96000 	C:\Program Files\Java\jre6\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000 	C:\WINDOWS\system32\WINMM.dll
    0x6d7a0000 - 0x6d7ac000 	C:\Program Files\Java\jre6\bin\verify.dll
    0x6d320000 - 0x6d33f000 	C:\Program Files\Java\jre6\bin\java.dll
    0x6d280000 - 0x6d288000 	C:\Program Files\Java\jre6\bin\hpi.dll
    0x76bf0000 - 0x76bfb000 	C:\WINDOWS\system32\PSAPI.DLL
    0x6d7e0000 - 0x6d7ef000 	C:\Program Files\Java\jre6\bin\zip.dll
    0x6d000000 - 0x6d14a000 	C:\Program Files\Java\jre6\bin\awt.dll
    0x73000000 - 0x73026000 	C:\WINDOWS\system32\WINSPOOL.DRV
    0x77c10000 - 0x77c68000 	C:\WINDOWS\system32\msvcrt.dll
    0x76390000 - 0x763ad000 	C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761e000 	C:\WINDOWS\system32\ole32.dll
    0x773d0000 - 0x774d3000 	C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\COMCTL32.dll
    0x77f60000 - 0x77fd6000 	C:\WINDOWS\system32\SHLWAPI.dll
    0x5ad70000 - 0x5ada8000 	C:\WINDOWS\system32\uxtheme.dll
    0x7c9c0000 - 0x7d1d7000 	C:\WINDOWS\system32\shell32.dll
    0x6d230000 - 0x6d27f000 	C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x4fdd0000 - 0x4ff76000 	C:\WINDOWS\system32\d3d9.dll
    0x49340000 - 0x49346000 	C:\WINDOWS\system32\d3d8thk.dll
    0x77c00000 - 0x77c08000 	C:\WINDOWS\system32\VERSION.dll
    0x6d600000 - 0x6d613000 	C:\Program Files\Java\jre6\bin\net.dll
    0x71ab0000 - 0x71ac7000 	C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 	C:\WINDOWS\system32\WS2HELP.dll
    0x6d620000 - 0x6d629000 	C:\Program Files\Java\jre6\bin\nio.dll
    0x71a50000 - 0x71a8f000 	C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000 	C:\WINDOWS\system32\DNSAPI.dll
    0x76d60000 - 0x76d79000 	C:\WINDOWS\system32\iphlpapi.dll
    0x68000000 - 0x68036000 	C:\WINDOWS\system32\rsaenh.dll
    0x76fb0000 - 0x76fb8000 	C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000 	C:\WINDOWS\system32\WLDAP32.dll
    0x64000000 - 0x64025000 	C:\Program Files\Bonjour\mdnsNSP.dll
    0x769c0000 - 0x76a74000 	C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b5000 	C:\WINDOWS\system32\netapi32.dll
    0x76fc0000 - 0x76fc6000 	C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000 	C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000 	C:\WINDOWS\System32\wshtcpip.dll
    0x6d780000 - 0x6d788000 	C:\Program Files\Java\jre6\bin\sunmscapi.dll
    0x77a80000 - 0x77b15000 	C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000 	C:\WINDOWS\system32\MSASN1.dll
    0x4c170000 - 0x4c1db000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\lwjgl.dll
    0x5ed00000 - 0x5edcc000 	C:\WINDOWS\system32\OPENGL32.dll
    0x68b20000 - 0x68b40000 	C:\WINDOWS\system32\GLU32.dll
    0x73760000 - 0x737ab000 	C:\WINDOWS\system32\DDRAW.dll
    0x73bc0000 - 0x73bc6000 	C:\WINDOWS\system32\DCIMAN32.dll
    0x6d350000 - 0x6d356000 	C:\Program Files\Java\jre6\bin\jawt.dll
    0x69000000 - 0x694ff000 	C:\WINDOWS\system32\atioglxx.dll
    0x4bc90000 - 0x4bca3000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\jinput-dx8.dll
    0x6ce10000 - 0x6ce48000 	C:\WINDOWS\system32\DINPUT8.dll
    0x688f0000 - 0x688f9000 	C:\WINDOWS\system32\HID.DLL
    0x77920000 - 0x77a13000 	C:\WINDOWS\system32\SETUPAPI.DLL
    0x76c30000 - 0x76c5e000 	C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000 	C:\WINDOWS\system32\IMAGEHLP.dll
    0x4ea50000 - 0x4ea62000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\jinput-raw.dll
    0x4eb60000 - 0x4ec89000 	C:\Documents and Settings\Amber Lemke\Application Data\.minecraft\bin\natives\OpenAL32.dll
    0x73f10000 - 0x73f6c000 	C:\WINDOWS\system32\dsound.dll
    0x72d20000 - 0x72d29000 	C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000 	C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000 	C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000 	C:\WINDOWS\system32\midimap.dll
    0x73ee0000 - 0x73ee4000 	C:\WINDOWS\system32\KsUser.dll
    
    VM Arguments:
    jvm_args: -Xms512m -Xmx1024m 
    java_command: C:\Documents and Settings\Amber Lemke\Desktop\Minecraft.exe
    Launcher Type: SUN_STANDARD
    
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Java\jre6\bin
    USERNAME=Amber Lemke
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 3 Stepping 4, GenuineIntel
    
    
    
    ---------------  S Y S T E M  ---------------
    
    OS: Windows XP Build 2600 Service Pack 3
    
    CPU:total 1 (1 cores per cpu, 2 threads per core) family 15 model 3 stepping 4, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ht
    
    Memory: 4k page, physical 784464k(34912k free), swap 1920096k(751844k free)
    
    vm_info: Java HotSpot(TM) Client VM (19.1-b02) for windows-x86 JRE (1.6.0_24-b07), built on Feb  2 2011 17:44:41 by "java_re" with MS VC++ 7.1 (VS2003)
    
    time: Fri Jan 13 16:04:45 2012
    elapsed time: 1049 seconds


    Ahem.

    So, I was playing on Super-Flat, Creative mode, and working on an entrance to a bunker using pistons, fairly simple, it was just an inverter, a stickypiston and a wooden plank. Other than that, I was building a tunnel... When I realized superflat is SUPER FLAT. So, I decided to keep working on it anyway, void dumping trap, I dunno. Other than that, I had crashed. RANDOMLY. No lag. Minecraft just closed and took a dump on my desktop. Okaibai
    Posted in: Legacy Support
  • 0

    posted a message on [WIP]TimeFreeze[MOD]
    Awesome idea, I feel as if using this and running into a dunegon would be helpful.
    Posted in: WIP Mods
  • 0

    posted a message on 1.8 Updates: Features from the Pre-Release!
    It's funny, everyone's getting this furnace glitch. I'm just fine, I can cook mahself some beef, next thing to add: Burgers. Simple creation. Cooked beef in the middle of a crafting bench. With bread on top and bottom.
    Posted in: Minecraft News
  • 0

    posted a message on [MOD] Ayu's Mods (Requesting help...)
    I know your sorta dead for mods, but can you update Saint Notch?!

    EDIT: I'm not the modding god, but if anyone is a modder here, they should fix it.
    Posted in: Mods Discussion
  • 0

    posted a message on [1.0.0] Clay Soldiers Classic
    It would be awesome if there were control zones, like building somthing out of orange wool will give that perimiter to the team. Looks great +1 download.
    Posted in: Minecraft Mods
  • 0

    posted a message on MInecraft crashed
    Here's a tip, don't use HD texture packs, just use a 16x16 pack, or just keep default. Or use the annoyance of MCPatcher. Learn to HD.
    Posted in: Legacy Support
  • 1

    posted a message on Why Can't I Plant Seeds?
    Reasons for not being able to plant seeds:

    A) Too low of light level, put some more torches or glowstone up.
    :cool.gif: Water too far away, I think you should put a line of water between each line of crops.
    C) If it's on SMP, could be a glitch.
    Posted in: Legacy Support
  • 1

    posted a message on [1.7.3] Aether Collaboration Mod - V1.02 - NEW MOBS, FIXES, ITEMS AND FEATURES!
    Very Long And Annoying Review!
    (The title is in big text, so you know it's true!)

    TL;DR: It was great, but has some bugs that are plain annoying.

    Click the button below to show the bugs I've found!

    Super Happy List of Screwed Up Stuff!

    -Tamed Moas Despawn.
    -(might not be a bug) Blocks Right clicked with the gravitite pick/shovel that have a block above them won't activate the effect when the block above is broken.
    -Only Aether blocks can use Gravitite tools correctly.

    Now for my review, you get to click another button, and this time I'm not using Spoiler to just make it short, it has real spoilers. For people who don't wanna spoil this experience, please, just look at the TL;DR above.

    Review Begins Now!


    So, I began playing last night for about 20 minutes and had to go to bed, I was on peaceful, just in case. I had then went to bed as it was 3:00 AM. I returned to playing today, and turned to easy, I had then seen a ghast-like flying figure, in the distance, it seemed to notice me, and shot a fireball, but as with the ghast, the fireball looked like a snowball, but it hit beside me... Nothing happened... I guessed that it was friendly and didn't really matter too much to my quest. I had sorta seen clouds, I stepped in one, and to my amazement, I swam, this was great, as I no current hit me, letting me float or swim, this was one of the best things I found because it held me suspended over a place where if I screwed up, I'd die. After this I found a large chasm in the ground, I instantly noticed the cobblestone-like mossy holystone, showing a dungeon was below. I had mined some torches from some time ago, that really helped me see, I saw a random chest, and a huge tunnel, I went in, and emptied the stupid, boring chest. I didn't think anything would really happen from here, that one chest was boring, I thought the rest would be. I walked down the hallway, and I saw another chest, so I think "Oh, free crap." I walked up, hoping to get something rare, then a Pac-man-like thing popped out of the chest! I beat it down with a pickaxe, just to step on a floor block, that had a cube-shaped monster attack me from below! I struck it a couple times, and it died. I had ended up doing this many times, that got quite annoying, but I made it into a large room, being scared of stepping on the floor... nothing popped out, so I covered the floor in torches, and directed my attention to the center of the room. It was a large block, a 2x2x2 I think, that looked odd, I guess I didn't notice it might pop out and attempt to murder me, which it did after I struck it with a pickaxe. So, I was scared from the chest and block monsters, and now I was at the verge of pissing myself from a huge f**king monster. I beat with my pickaxe, and to my amazement, it worked. After a few million hits, It exploded into stone, but dropped a cross-shaped key. I had my book of lore in my quickbar, and opened it, and inserted the key, it gave information on the key-It was the bronze key, and it was dropped by the "slider" and I noticed the monster slid a lot, so I thought that was the slider, and I closed the book. I then noticed a small pit was left open where that monster had left, with 4 trap doors closed in the middle. I opened them and found a box. I thought this was a bronze chest, and right clicked it holding a key! It opened to a normal chest screen, but it had some epic items, like volume 1 and 2 of the book of lore. It also had the hammer of notch and a few other weapons. This was amazing. I can't wait to find a silver and gold.

    SUPER HAPPY RATING:
    (now in categories)
    Fun: 9/10
    Not boring: 8/10
    Fighting: 10/10
    Epicness: 10/10

    Super Overall Rating of doom.
    37/40 or 9/10

    Amazing. Fix those bugs, and take a good look at the wolves code.

    That tiny button holds so much!



    -Cookingboy3
    Posted in: Minecraft Mods
  • 0

    posted a message on World Start Fail?
    Yes, forums, I'm here to annoy you again. But even better - no technical data!
    Lets get to the point.

    So, I've installed the MMPR .minecraft folder (Planes, Vehicles, and Modloader (META-INF is gone, so you know) and I've installed TMI, and Xray. Now, I've got this same config on another computer, runs fine. I downloaded the .minecraft folder so I can play on the MMPR survival server.

    Now, when I run minecraft, it boots up normally (Launcher, Mojang, Menu) but when I try to load a world or connect to a MP server- BOOM. Nothing. I connect to multiplayer, connecting, logging in, blah blah blah. Then the screen turns to the dirt background, and after about 5 seconds, crashes. It flashes the error screen, but doesn't make a log, or let me even see what it has to say. It crashes on Saving Chunks for SSP.

    Help me out people of the internet that I don't know at all.
    Posted in: Legacy Support
  • 0

    posted a message on [1.1] Piston patch - updated for 1.1
    Ok, you guys got hippo to tell you to wait ONE DAY. If you still can't go to the link below and use MCNostalgia to downgrade. (It's legal. Read the OP)

    http://www.minecraftforum.net/topic/106402-tool-cyborgs-tools-mcnostalgia-102-released/



    Hugs and :SSSS: s
    Cookingboy3
    Posted in: Minecraft Mods
  • 0

    posted a message on [TOOL] Cyborg's Tools - MCNostalgia 1.0.4
    The only reason why I want this, is it restores compatiblity with 1.5_1 mods.
    Posted in: Minecraft Tools
  • To post a comment, please .