• 0

    posted a message on Multiplayer Lag!!!
    nobody? ;-; I really need some help...

    Now I could play before 8:00 am then when it HITS 8:00 it lags so bad like nothing happens, i was like in the middle of the game while it lags
    Posted in: Server Support and Administration
  • 0

    posted a message on NBTExplorer - NBT Editor for Windows and Mac
    Quote from jaquadro»

    Did you try using the Chunk Finder? If you just browse the regions, chunks are defined within the local coordinate system of each region.

    I did but It can't find the chunk T_T I went on to try again then it was gone.
    Posted in: Minecraft Tools
  • 0

    posted a message on [Random] Minecraft - The Other Side Of martin0leung
    So I made a random machinima with my friends:
    - Me martin0leung - Director/Ideas/Camera - Channel Here
    - lightwrecker - Main Actor - Channel Here
    - MCPlaysIronman - Secondary Actor - Channel Here

    Check them out! they are AWESOME!

    We made this for fun because we all like randomness... We also had the time so we uploaded it here:



    Hope you guys like it! also... subscribe and like for more!
    Posted in: Machinimas
  • 0

    posted a message on NBTExplorer - NBT Editor for Windows and Mac
    I have some problems, It can't find negative chunks like "0 -1". please help!

    Anyways... Great tool! made a lot of changes in my... Can't tell anybody yet XD
    Posted in: Minecraft Tools
  • 0

    posted a message on Command Blocks another problem [Need Help!]
    Ok, i got the lightning and the xp fixed, but I still cant do the speed, there is a 11 which is resistance, and a 1 which is speed. the resistance works but not the speed!
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Command Blocks another problem [Need Help!]
    And why is this not giving the mob speed?

    summon Zombie 0 150 -99 {ActiveEffects:[{Id:11,Amplifier:10,Duration:100},{Id:1,Amplifier:5,Duration:1000000}]}
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Command Blocks another problem [Need Help!]
    I'm trying to execute players within a few blocks of a Item with a command block:

    execute @e[type=Item,r=50] ~ ~ ~ execute @p ~ ~ ~ execute @e[rm=5] ~ ~ ~ summon LightningBolt

    But it doesn't work D: Plz help!
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Problem With Command Blocks
    Quote from Skylinerw»

    There's a logic issue occurring in all of them. To explain with your first one, you're removing 50 C so longer as they have 50 or more, which is fine as far as point removal goes. However, your second one is setting HU to 1 if they also have 50 or more C, which is the problem. If the removal of C from the first command drops them below 50 C, the second command won't set their HU to 1, preventing the rest of the commands from working. Reversing the order of these two command blocks and changing the parameters slightly will fix that issue:

    /scoreboard players set @a[score_C_min=50,score_HU=0,r=5] HU 1
    /scoreboard players remove @a[score_HU_min=1,score_HU=1,score_C_min=50,r=5] C 50 Which also needs to be done for the second set:

    /scoreboard players set @a[score_C_min=150,score_HU_min=1,score_HU=1,r=5] HU 2
    /scoreboard players remove @a[score_HU_min=2,score_HU=2,score_C_min=150,r=5] C 150 And third set:

    /scoreboard players set @a[score_C_min=500,score_HU_min=2,score_HU_min=2,r=5] HU 3
    /scoreboard players remove @a[score_HU_min=3,score_HU=3,score_C_min=500,r=5] C 500

    thanks! <3 you helped me so much! It works!

    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Problem With Command Blocks
    So I made something that I want to use but doesn't work every time,
    I made these objectives:
    - C (Coins)
    - HU (Health Upgrades)


    At first, I gave myself 1000 coins then for the first health upgrade, I did this:

    "scoreboard players remove @a[score_C_min=50,r=5,score_HU=0] C 50"
    for the removal of coins,
    then:
    "scoreboard players set @a[score_C_min=50,r=4,score_HU=0] HU 1"
    for the health uprades.
    it works


    but for the second one:
    scoreboard players remove @a[score_C_min=150,r=4,score_HU=1,score_HU_min=1] C 150 *
    and
    scoreboard players set @a[score_C_min=150,r=5,score_HU=1,score_HU_min=1] HU 2
    When I try it, mostly * doesn't work.


    And for the third one:
    scoreboard players remove @a[score_C_min=500,r=4,score_HU_min=2,score_HU=2] C 500
    and
    scoreboard players set @a[score_C_min=500,r=5,score_HU=2,score_HU_min=2] HU 3 *
    Then when i try it mostly the * doesn't work

    Please help! this is getting very annoying! I cant get it to work.
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Detect Player's First Join
    Quote from Skylinerw»


    You have to create the teams first:
    /scoreboard teams add New
    /scoreboard teams add Old
    As well, the proper syntax for joining a team is:
    /scoreboard teams join New @a[team=]
    /scoreboard teams join Old @a[team=New]

    :P I do know commands... I just didn't think about this. But you guys told me so i'm good!
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Detect Player's First Join
    Quote from magib1»
    Players scores aren't initialized when they first join the server, so you'll need to initialize them first. Rather than using a dummy variable you might be able to use teams to do this - I don't think they have to be initialized.

    /scoreboard teams join @a[team=] New \\Add players without a team to the "New" team
    /execute @a[team=New] ~ ~ ~ \\Run whatever commands you want to for players the first time they log in
    /scoreboard teams join @a[team=New] Old \\Move players to the "Old" team after the commands have been run

    I tried it but this was what it said:
    "Could not add 1 player(s) to team 417d6e72-45a8-4cc8-a9dd-90e25463ff52: New"

    EDIT:
    Ok, I found what is wrong its /scoreboard teams join New @a[team=] not /scoreboard teams join @a[team=] New
    Thanks!!
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Detect Player's First Join
    That was what I use for both command, I put them on a command block hooked up to a clock. they just come out as "Unknown command. Try /help for a list of commands". I still appreciate the help though.
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Detect Player's First Join
    I am trying to detect the player's first join, I tried all of my ideas but they don't work.
    I made a scoreboard objective called Join then I tried these commands:

    /scoreboard players set @a[score_Join=!1] Join 1
    /testfor @a[score_join=!1]

    and a lot more but they don't work!
    I also searched the internet but there was no working designs, Help would be greatly appreciated.
    Posted in: Redstone Discussion and Mechanisms
  • 0

    posted a message on Sonic Ether's Unbelievable Shaders [compatible with Minecraft 1.12.2 via OptiFine]
    When i try to use another shaders pack instead of internal it crashes, plz help!

    Log:


    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000000fefb590, pid=4544, tid=2704
    #
    # JRE version: Java(TM) SE Runtime Environment (7.0_45-b18) (build 1.7.0_45-b18)
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.45-b08 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C [ig75icd64.dll+0x8b590]
    #
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    #
    # If you would like to submit a bug report, please visit:
    # http://bugreport.sun.com/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 (0x00000000022fe800): JavaThread "Client thread" [_thread_in_native, id=2704, stack(0x0000000001d00000,0x0000000001e00000)]

    siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000

    Registers:
    RAX=0x0000000000000000, RBX=0x0000000010b71000, RCX=0x0000000000000000, RDX=0x0000000000000000
    RSP=0x0000000001dfb310, RBP=0x0000000001dfb440, RSI=0x0000000000000006, RDI=0x000000001ae00000
    R8 =0x0000000000000198, R9 =0x0000000000000003, R10=0x0000000000000000, R11=0x0000000001dfb240
    R12=0x0000000010b90ff8, R13=0x0000000000000198, R14=0x000000001478a350, R15=0x0000000001dfbb0c
    RIP=0x000000000fefb590, EFLAGS=0x0000000000010206

    Top of Stack: (sp=0x0000000001dfb310)
    0x0000000001dfb310: 000000003e220000 0000000000000000
    0x0000000001dfb320: 000000003e000000 0000000000000000
    0x0000000001dfb330: 0000000001dfbb08 000000000ffe22dc
    0x0000000001dfb340: 0000000001dfb440 0000000010b90ff8
    0x0000000001dfb350: 0000000010b71000 0000000000000006
    0x0000000001dfb360: c6ee96320000000a 0000000001dfbb0c
    0x0000000001dfb370: 0000000001dfbb08 0000000001dfbb00
    0x0000000001dfb380: 0000000001dfc138 b95a2a5d00000000
    0x0000000001dfb390: 0000000400000004 0000000020e5d4e0
    0x0000000001dfb3a0: 0000040000000198 0000000000000001
    0x0000000001dfb3b0: 83a05d7a00000004 0000000010b90ff8
    0x0000000001dfb3c0: 0000000001dfbb00 000000000c3cad10
    0x0000000001dfb3d0: c7e8e6b400000004 000000000c3cacec
    0x0000000001dfb3e0: 000000000000acec 8ed8e38400000000
    0x0000000001dfb3f0: eb9cc92500000000 4e38e2ad00000000
    0x0000000001dfb400: 0000000000000004 7104481500000000

    Instructions: (pc=0x000000000fefb590)
    0x000000000fefb570: c2 10 66 0f e7 47 f0 49 3b c2 72 e4 e9 ab 00 00
    0x000000000fefb580: 00 4d 85 c9 74 6c 66 66 0f 1f 84 00 00 00 00 00
    0x000000000fefb590: 66 0f 6f 3a 66 0f 6f 72 10 66 0f 6f 6a 20 41 ff
    0x000000000fefb5a0: c2 48 83 ef 80 41 8b c2 66 0f 6f 62 30 66 0f 6f


    Register to memory mapping:

    RAX=0x0000000000000000 is an unknown value
    RBX=0x0000000010b71000 is an unknown value
    RCX=0x0000000000000000 is an unknown value
    RDX=0x0000000000000000 is an unknown value
    RSP=0x0000000001dfb310 is pointing into the stack for thread: 0x00000000022fe800
    RBP=0x0000000001dfb440 is pointing into the stack for thread: 0x00000000022fe800
    RSI=0x0000000000000006 is an unknown value
    RDI=0x000000001ae00000 is an unknown value
    R8 =0x0000000000000198 is an unknown value
    R9 =0x0000000000000003 is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x0000000001dfb240 is pointing into the stack for thread: 0x00000000022fe800
    R12=0x0000000010b90ff8 is an unknown value
    R13=0x0000000000000198 is an unknown value
    R14=0x000000001478a350 is an unknown value
    R15=0x0000000001dfbb0c is pointing into the stack for thread: 0x00000000022fe800


    Stack: [0x0000000001d00000,0x0000000001e00000], sp=0x0000000001dfb310, free space=1004k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ig75icd64.dll+0x8b590]

    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.lwjgl.opengl.GL11.nglCallList(IJ)V+0
    j org.lwjgl.opengl.GL11.glCallList(I)V+15
    j net.minecraft.client.renderer.RenderGlobal.func_72736_c(F)V+2400
    j net.minecraft.client.renderer.RenderGlobal.func_72718_b(F)V+100
    j net.minecraft.client.renderer.EntityRenderer.func_82829_a(Lnet/minecraft/client/renderer/RenderGlobal;F)V+46
    j net.minecraft.client.renderer.EntityRenderer.func_78471_a(FJ)V+613
    j shadersmodcore.client.Shaders.beginRender(Lnet/minecraft/client/Minecraft;FJ)V+1013
    j net.minecraft.client.renderer.EntityRenderer.func_78471_a(FJ)V+6
    j net.minecraft.client.renderer.EntityRenderer.func_78480_b(F)V+769
    j net.minecraft.client.Minecraft.func_71411_J()V+327
    j net.minecraft.client.Minecraft.func_99999_d()V+61
    j net.minecraft.client.main.Main.main([Ljava/lang/String;)V+1012
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+57
    j net.minecraft.launchwrapper.Launch.launch([Ljava/lang/String;)V+664
    j net.minecraft.launchwrapper.Launch.main([Ljava/lang/String;)V+8
    v ~StubRoutines::call_stub

    --------------- P R O C E S S ---------------

    Java Threads: ( => current thread )
    0x000000000d813000 JavaThread "Texture Downloader #1" daemon [_thread_in_native, id=32, stack(0x000000001c680000,0x000000001c780000)]
    0x000000000d810000 JavaThread "pool-2-thread-1" [_thread_blocked, id=1652, stack(0x00000000142a0000,0x00000000143a0000)]
    0x000000000d812000 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=4004, stack(0x000000000fcb0000,0x000000000fdb0000)]
    0x000000000d810800 JavaThread "Netty Client IO #1" daemon [_thread_in_native, id=3388, stack(0x000000001c780000,0x000000001c880000)]
    0x000000000d80f000 JavaThread "Netty Client IO #0" daemon [_thread_in_native, id=3344, stack(0x000000001c480000,0x000000001c580000)]
    0x000000000d80e800 JavaThread "Thread-12" daemon [_thread_in_native, id=780, stack(0x000000001c380000,0x000000001c480000)]
    0x000000000e6bc000 JavaThread "Server Pinger #0" daemon [_thread_blocked, id=4536, stack(0x000000001c280000,0x000000001c380000)]
    0x000000000e6c9800 JavaThread "LWJGL Timer" daemon [_thread_blocked, id=4488, stack(0x000000001c080000,0x000000001c180000)]
    0x000000000f679800 JavaThread "Thread-10" [_thread_blocked, id=4248, stack(0x00000000181e0000,0x00000000182e0000)]
    0x000000000e2a3800 JavaThread "Thread-9" [_thread_blocked, id=5012, stack(0x00000000161d0000,0x00000000162d0000)]
    0x000000000c153000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4496, stack(0x000000000f9c0000,0x000000000fac0000)]
    0x000000000d58c800 JavaThread "Timer hack thread" daemon [_thread_blocked, id=1524, stack(0x000000000f8c0000,0x000000000f9c0000)]
    0x000000000e16f800 JavaThread "Snooper Timer" daemon [_thread_blocked, id=3272, stack(0x000000000f7c0000,0x000000000f8c0000)]
    0x000000000acc2000 JavaThread "Service Thread" daemon [_thread_blocked, id=2952, stack(0x000000000b870000,0x000000000b970000)]
    0x000000000acc1000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=4944, stack(0x000000000b770000,0x000000000b870000)]
    0x000000000acc0800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=1912, stack(0x000000000b670000,0x000000000b770000)]
    0x000000000acbf800 JavaThread "Attach Listener" daemon [_thread_blocked, id=4216, stack(0x000000000b570000,0x000000000b670000)]
    0x000000000acbd000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2672, stack(0x000000000b470000,0x000000000b570000)]
    0x000000000acb8000 JavaThread "Surrogate Locker Thread (Concurrent GC)" daemon [_thread_blocked, id=4244, stack(0x000000000b370000,0x000000000b470000)]
    0x000000000ac72800 JavaThread "Finalizer" daemon [_thread_blocked, id=3004, stack(0x000000000b250000,0x000000000b350000)]
    0x000000000ac6c800 JavaThread "Reference Handler" daemon [_thread_blocked, id=2056, stack(0x000000000b150000,0x000000000b250000)]
    =>0x00000000022fe800 JavaThread "Client thread" [_thread_in_native, id=2704, stack(0x0000000001d00000,0x0000000001e00000)]

    Other Threads:
    0x000000000ac69000 VMThread [stack: 0x000000000b050000,0x000000000b150000] [id=2236]
    0x000000000acdf000 WatcherThread [stack: 0x000000000b970000,0x000000000ba70000] [id=4180]

    VM state:not at safepoint (normal execution)

    VM Mutex/Monitor currently owned by a thread: None

    Heap
    par new generation total 118016K, used 40359K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 35% used [0x00000000bae00000, 0x00000000bd2ad6c8, 0x00000000c1480000)
    from space 13056K, 21% used [0x00000000c2140000, 0x00000000c23fc6f0, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89891K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34640K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)

    Card table byte_map: [0x0000000005b00000,0x0000000005d30000] byte_map_base: 0x0000000005529000

    Polling page: 0x0000000000560000

    Code Cache [0x0000000002300000, 0x00000000027b0000, 0x0000000005300000)
    total_blobs=2084 nmethods=1376 adapters=659 free_code_cache=44529Kb largest_free_block=45476224

    Compilation events (10 events):
    Event: 23.128 Thread 0x000000000acc0800 nmethod 1541 0x00000000027a12d0 code [0x00000000027a1420, 0x00000000027a14f8]
    Event: 23.140 Thread 0x000000000acc1000 nmethod 1538 0x00000000026cfc50 code [0x00000000026cff20, 0x00000000026d0df8]
    Event: 23.141 Thread 0x000000000acc0800 1542 com.google.common.base.Preconditions::checkPositionIndex (8 bytes)
    Event: 23.141 Thread 0x000000000acc1000 1543 com.google.common.base.Preconditions::checkPositionIndex (25 bytes)
    Event: 23.141 Thread 0x000000000acc1000 nmethod 1543 0x00000000027937d0 code [0x0000000002793900, 0x0000000002793958]
    Event: 23.141 Thread 0x000000000acc0800 nmethod 1542 0x0000000002471cd0 code [0x0000000002471e00, 0x0000000002471e58]
    Event: 23.148 Thread 0x000000000acc0800 1544 net.minecraft.client.renderer.WorldRenderer::func_78906_e (5 bytes)
    Event: 23.148 Thread 0x000000000acc0800 nmethod 1544 0x0000000002471ad0 code [0x0000000002471c00, 0x0000000002471c58]
    Event: 23.150 Thread 0x000000000acc1000 1545 net.minecraft.client.renderer.WorldRenderer::func_78912_a (51 bytes)
    Event: 23.150 Thread 0x000000000acc1000 nmethod 1545 0x0000000002471850 code [0x0000000002471980, 0x0000000002471a38]

    GC Heap History (10 events):
    Event: 22.425 GC heap before
    {Heap before GC invocations=32 (full 13):
    par new generation total 118016K, used 107622K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 100% used [0x00000000bae00000, 0x00000000c1480000, 0x00000000c1480000)
    from space 13056K, 20% used [0x00000000c1480000, 0x00000000c17198e0, 0x00000000c2140000)
    to space 13056K, 0% used [0x00000000c2140000, 0x00000000c2140000, 0x00000000c2e00000)
    concurrent mark-sweep generation total 149364K, used 89507K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34443K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    Event: 22.426 GC heap after
    Heap after GC invocations=33 (full 13):
    par new generation total 118016K, used 2517K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 0% used [0x00000000bae00000, 0x00000000bae00000, 0x00000000c1480000)
    from space 13056K, 19% used [0x00000000c2140000, 0x00000000c23b5408, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89507K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34443K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    }
    Event: 22.493 GC heap before
    {Heap before GC invocations=33 (full 14):
    par new generation total 118016K, used 107037K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 99% used [0x00000000bae00000, 0x00000000c1412250, 0x00000000c1480000)
    from space 13056K, 19% used [0x00000000c2140000, 0x00000000c23b5408, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89507K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34457K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    Event: 22.495 GC heap after
    Heap after GC invocations=34 (full 14):
    par new generation total 118016K, used 536K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 0% used [0x00000000bae00000, 0x00000000bae00000, 0x00000000c1480000)
    from space 13056K, 4% used [0x00000000c1480000, 0x00000000c1506168, 0x00000000c2140000)
    to space 13056K, 0% used [0x00000000c2140000, 0x00000000c2140000, 0x00000000c2e00000)
    concurrent mark-sweep generation total 149364K, used 89507K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34457K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    }
    Event: 22.549 GC heap before
    {Heap before GC invocations=34 (full 14):
    par new generation total 118016K, used 105496K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 100% used [0x00000000bae00000, 0x00000000c1480000, 0x00000000c1480000)
    from space 13056K, 4% used [0x00000000c1480000, 0x00000000c1506168, 0x00000000c2140000)
    to space 13056K, 0% used [0x00000000c2140000, 0x00000000c2140000, 0x00000000c2e00000)
    concurrent mark-sweep generation total 149364K, used 89507K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34457K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    Event: 22.551 GC heap after
    Heap after GC invocations=35 (full 14):
    par new generation total 118016K, used 2428K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 0% used [0x00000000bae00000, 0x00000000bae00000, 0x00000000c1480000)
    from space 13056K, 18% used [0x00000000c2140000, 0x00000000c239f3c0, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89799K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34457K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    }
    Event: 23.042 GC heap before
    {Heap before GC invocations=35 (full 14):
    par new generation total 118016K, used 107388K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 100% used [0x00000000bae00000, 0x00000000c1480000, 0x00000000c1480000)
    from space 13056K, 18% used [0x00000000c2140000, 0x00000000c239f3c0, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89799K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34497K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    Event: 23.044 GC heap after
    Heap after GC invocations=36 (full 14):
    par new generation total 118016K, used 2814K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 0% used [0x00000000bae00000, 0x00000000bae00000, 0x00000000c1480000)
    from space 13056K, 21% used [0x00000000c1480000, 0x00000000c173f8d8, 0x00000000c2140000)
    to space 13056K, 0% used [0x00000000c2140000, 0x00000000c2140000, 0x00000000c2e00000)
    concurrent mark-sweep generation total 149364K, used 89881K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34497K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    }
    Event: 23.088 GC heap before
    {Heap before GC invocations=36 (full 14):
    par new generation total 118016K, used 107774K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 100% used [0x00000000bae00000, 0x00000000c1480000, 0x00000000c1480000)
    from space 13056K, 21% used [0x00000000c1480000, 0x00000000c173f8d8, 0x00000000c2140000)
    to space 13056K, 0% used [0x00000000c2140000, 0x00000000c2140000, 0x00000000c2e00000)
    concurrent mark-sweep generation total 149364K, used 89881K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34497K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    Event: 23.090 GC heap after
    Heap after GC invocations=37 (full 14):
    par new generation total 118016K, used 2801K [0x00000000bae00000, 0x00000000c2e00000, 0x00000000c2e00000)
    eden space 104960K, 0% used [0x00000000bae00000, 0x00000000bae00000, 0x00000000c1480000)
    from space 13056K, 21% used [0x00000000c2140000, 0x00000000c23fc6f0, 0x00000000c2e00000)
    to space 13056K, 0% used [0x00000000c1480000, 0x00000000c1480000, 0x00000000c2140000)
    concurrent mark-sweep generation total 149364K, used 89891K [0x00000000c2e00000, 0x00000000cbfdd000, 0x00000000fae00000)
    concurrent-mark-sweep perm gen total 57408K, used 34497K [0x00000000fae00000, 0x00000000fe610000, 0x0000000100000000)
    }

    Deoptimization events (10 events):
    Event: 22.099 Thread 0x000000000d810000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000278749c method=java.util.regex.Pattern$CharProperty.study(Ljava/util/regex/Pattern$TreeInfo;)Z @ 25
    Event: 22.099 Thread 0x000000000d810000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000278749c method=java.util.regex.Pattern$CharProperty.study(Ljava/util/regex/Pattern$TreeInfo;)Z @ 25
    Event: 22.349 Thread 0x000000000d813000 Uncommon trap: reason=unreached action=reinterpret pc=0x00000000027741f8 method=java.net.URL.<init>(Ljava/net/URL;Ljava/lang/String;Ljava/net/URLStreamHandler;)V @ 347
    Event: 22.490 Thread 0x00000000022fe800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000002439a18 method=com.google.common.collect.Iterators.addAll(Ljava/util/Collection;Ljava/util/Iterator;)Z @ 13
    Event: 22.497 Thread 0x00000000022fe800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002788c88 method=java.util.regex.Pattern$Ques.study(Ljava/util/regex/Pattern$TreeInfo;)Z @ 18
    Event: 22.497 Thread 0x00000000022fe800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002788c88 method=java.util.regex.Pattern$Ques.study(Ljava/util/regex/Pattern$TreeInfo;)Z @ 18
    Event: 22.955 Thread 0x00000000022fe800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000002788c88 method=java.util.regex.Pattern$Ques.study(Ljava/util/regex/Pattern$TreeInfo;)Z @ 18
    Event: 23.095 Thread 0x00000000022fe800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x0000000002439a18 method=com.google.common.collect.Iterators.addAll(Ljava/util/Collection;Ljava/util/Iterator;)Z @ 13
    Event: 23.123 Thread 0x00000000022fe800 Uncommon trap: reason=unreached action=reinterpret pc=0x00000000026bd354 method=org.lwjgl.BufferUtils.getElementSizeExponent(Ljava/nio/Buffer;)I @ 4
    Event: 23.150 Thread 0x00000000022fe800 Uncommon trap: reason=unloaded action=reinterpret pc=0x000000000272d194 method=shadersmodcore.client.ShadersTess.preDrawArray(Lnet/minecraft/client/renderer/Tessellator;)V @ 113

    Internal exceptions (10 events):
    Event: 23.039 Thread 0x00000000022fe800 Threw 0x00000000c054dfb0 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.039 Thread 0x00000000022fe800 Threw 0x00000000c054ec98 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c054fbc8 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c05508b0 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c0551770 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c0552458 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c0553318 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.040 Thread 0x00000000022fe800 Threw 0x00000000c0554000 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jni.cpp:717
    Event: 23.119 Thread 0x00000000022fe800 Threw 0x00000000bc928d60 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244
    Event: 23.138 Thread 0x00000000022fe800 Threw 0x00000000bccacd48 at C:\re\jdk7u45\229\hotspot\src\share\vm\prims\jvm.cpp:1244

    Events (10 events):
    Event: 23.144 loading class 0x000000000be3d120 done
    Event: 23.145 loading class 0x000000000d8aaef0
    Event: 23.145 loading class 0x000000000d8aaef0 done
    Event: 23.146 loading class 0x000000000c88fd20
    Event: 23.146 loading class 0x000000000c88fd20 done
    Event: 23.150 Thread 0x00000000022fe800 Uncommon trap: trap_request=0x000000c7 fr.pc=0x000000000272d194
    Event: 23.150 Thread 0x00000000022fe800 DEOPT PACKING pc=0x000000000272d194 sp=0x0000000001dfe460
    Event: 23.150 Thread 0x00000000022fe800 DEOPT UNPACKING pc=0x00000000023375a4 sp=0x0000000001dfe398 mode 2
    Event: 23.150 loading class 0x000000000cd2d0a0
    Event: 23.150 loading class 0x000000000cd2d0a0 done


    Dynamic libraries:
    0x00007ff619830000 - 0x00007ff619863000 C:\Program Files\Java\jre7\bin\javaw.exe
    0x00007ffea7c10000 - 0x00007ffea7dba000 C:\WINDOWS\SYSTEM32\ntdll.dll
    0x00007ffea5a30000 - 0x00007ffea5b6a000 C:\WINDOWS\system32\KERNEL32.DLL
    0x00007ffea5380000 - 0x00007ffea548f000 C:\WINDOWS\system32\KERNELBASE.dll
    0x00007ffea3950000 - 0x00007ffea39d8000 C:\WINDOWS\system32\apphelp.dll
    0x00007ffe9e450000 - 0x00007ffe9e49f000 C:\WINDOWS\AppPatch\AppPatch64\AcGenral.DLL
    0x00007ffea77a0000 - 0x00007ffea7847000 C:\WINDOWS\system32\msvcrt.dll
    0x00007ffea4dc0000 - 0x00007ffea4deb000 C:\WINDOWS\SYSTEM32\SspiCli.dll
    0x00007ffea5b70000 - 0x00007ffea5bc1000 C:\WINDOWS\system32\SHLWAPI.dll
    0x00007ffea5690000 - 0x00007ffea5801000 C:\WINDOWS\system32\USER32.dll
    0x00007ffea5510000 - 0x00007ffea5688000 C:\WINDOWS\system32\ole32.dll
    0x00007ffea5f80000 - 0x00007ffea73a0000 C:\WINDOWS\system32\SHELL32.dll
    0x00007ffea45f0000 - 0x00007ffea460e000 C:\WINDOWS\SYSTEM32\USERENV.dll
    0x00007ffea5980000 - 0x00007ffea5a25000 C:\WINDOWS\system32\ADVAPI32.dll
    0x00007ffe998e0000 - 0x00007ffe998fb000 C:\WINDOWS\SYSTEM32\MPR.dll
    0x00007ffea78f0000 - 0x00007ffea7a27000 C:\WINDOWS\system32\RPCRT4.dll
    0x00007ffea5f10000 - 0x00007ffea5f67000 C:\WINDOWS\SYSTEM32\sechost.dll
    0x00007ffea5d30000 - 0x00007ffea5f06000 C:\WINDOWS\SYSTEM32\combase.dll
    0x00007ffea5be0000 - 0x00007ffea5d24000 C:\WINDOWS\system32\GDI32.dll
    0x00007ffea4f80000 - 0x00007ffea4f94000 C:\WINDOWS\SYSTEM32\profapi.dll
    0x00007ffea2d30000 - 0x00007ffea2dcf000 C:\WINDOWS\SYSTEM32\SHCORE.dll
    0x00007ffea73a0000 - 0x00007ffea73d4000 C:\WINDOWS\system32\IMM32.DLL
    0x00007ffea7580000 - 0x00007ffea76b9000 C:\WINDOWS\system32\MSCTF.dll
    0x00007ffea1140000 - 0x00007ffea139a000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17031_none_6242a4b3ecbb55a1\COMCTL32.dll
    0x0000000067e00000 - 0x0000000067ed2000 C:\Program Files\Java\jre7\bin\msvcr100.dll
    0x0000000067630000 - 0x0000000067df9000 C:\Program Files\Java\jre7\bin\server\jvm.dll
    0x00007ffe9f9b0000 - 0x00007ffe9f9b9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
    0x00007ffe9f330000 - 0x00007ffe9f34f000 C:\WINDOWS\SYSTEM32\WINMM.dll
    0x00007ffea7780000 - 0x00007ffea7787000 C:\WINDOWS\system32\PSAPI.DLL
    0x00007ffea5870000 - 0x00007ffea58c8000 C:\WINDOWS\system32\WS2_32.dll
    0x00007ffe9f300000 - 0x00007ffe9f32a000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
    0x00007ffea5bd0000 - 0x00007ffea5bd9000 C:\WINDOWS\system32\NSI.dll
    0x00007ffea5330000 - 0x00007ffea537a000 C:\WINDOWS\SYSTEM32\cfgmgr32.dll
    0x00007ffea3df0000 - 0x00007ffea3e16000 C:\WINDOWS\SYSTEM32\DEVOBJ.dll
    0x0000000067620000 - 0x000000006762f000 C:\Program Files\Java\jre7\bin\verify.dll
    0x00000000675f0000 - 0x0000000067618000 C:\Program Files\Java\jre7\bin\java.dll
    0x00000000675d0000 - 0x00000000675e5000 C:\Program Files\Java\jre7\bin\zip.dll
    0x00000000672e0000 - 0x00000000672eb000 C:\Program Files\Java\jre7\bin\management.dll
    0x00000000673c0000 - 0x00000000673d9000 C:\Program Files\Java\jre7\bin\net.dll
    0x00007ffea4060000 - 0x00007ffea4077000 C:\WINDOWS\system32\WTFastDrv.dll
    0x00007ffea4840000 - 0x00007ffea4898000 C:\WINDOWS\system32\mswsock.dll
    0x00000000673a0000 - 0x00000000673b1000 C:\Program Files\Java\jre7\bin\nio.dll
    0x00007ffea0ab0000 - 0x00007ffea0ac4000 C:\WINDOWS\system32\napinsp.dll
    0x00007ffe9f2c0000 - 0x00007ffe9f2d9000 C:\WINDOWS\system32\pnrpnsp.dll
    0x00007ffea3800000 - 0x00007ffea3819000 C:\WINDOWS\system32\NLAapi.dll
    0x00007ffea4650000 - 0x00007ffea46f3000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
    0x00007ffea0af0000 - 0x00007ffea0afc000 C:\WINDOWS\System32\winrnr.dll
    0x00007ffe9e670000 - 0x00007ffe9e679000 C:\Windows\System32\rasadhlp.dll
    0x00007ffea0380000 - 0x00007ffea03a9000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
    0x00007ffea0350000 - 0x00007ffea035a000 C:\WINDOWS\SYSTEM32\WINNSI.DLL
    0x00007ffea0120000 - 0x00007ffea0188000 C:\WINDOWS\System32\fwpuclnt.dll
    0x00000000672f0000 - 0x0000000067305000 C:\Program Files\Java\jre7\bin\unpack.dll
    0x0000000180000000 - 0x0000000180051000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\lwjgl64.dll
    0x00007ffe994d0000 - 0x00007ffe995f1000 C:\WINDOWS\SYSTEM32\OPENGL32.dll
    0x00007ffe9edb0000 - 0x00007ffe9edba000 C:\WINDOWS\SYSTEM32\VERSION.dll
    0x00007ffe9f210000 - 0x00007ffe9f23c000 C:\WINDOWS\SYSTEM32\GLU32.dll
    0x00007ffe98f50000 - 0x00007ffe99044000 C:\WINDOWS\SYSTEM32\DDRAW.dll
    0x00007ffea04f0000 - 0x00007ffea04f9000 C:\WINDOWS\SYSTEM32\DCIMAN32.dll
    0x00007ffea48a0000 - 0x00007ffea48be000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
    0x00007ffea44e0000 - 0x00007ffea4515000 C:\WINDOWS\system32\rsaenh.dll
    0x00007ffea4ad0000 - 0x00007ffea4af6000 C:\WINDOWS\SYSTEM32\bcrypt.dll
    0x00007ffea4df0000 - 0x00007ffea4e50000 C:\WINDOWS\system32\bcryptprimitives.dll
    0x00007ffea4e50000 - 0x00007ffea4e5a000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
    0x0000000067430000 - 0x00000000675c5000 C:\Program Files\Java\jre7\bin\awt.dll
    0x00007ffea76c0000 - 0x00007ffea7777000 C:\WINDOWS\system32\OLEAUT32.dll
    0x00007ffea3c70000 - 0x00007ffea3d91000 C:\WINDOWS\system32\uxtheme.dll
    0x00007ffea3410000 - 0x00007ffea3430000 C:\WINDOWS\system32\dwmapi.dll
    0x000000000fe70000 - 0x0000000010652000 C:\WINDOWS\SYSTEM32\ig75icd64.dll
    0x00007ffea0ce0000 - 0x00007ffea1140000 C:\WINDOWS\SYSTEM32\igdusc64.dll
    0x00007ffea3c60000 - 0x00007ffea3c6a000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
    0x00007ffe8ac40000 - 0x00007ffe8accd000 C:\WINDOWS\SYSTEM32\mscms.dll
    0x00007ffe9d9f0000 - 0x00007ffe9da31000 C:\WINDOWS\SYSTEM32\icm32.dll
    0x00007ffea4f20000 - 0x00007ffea4f65000 C:\WINDOWS\SYSTEM32\powrprof.dll
    0x0000000070a40000 - 0x0000000070adc000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\avutil-ttv-51.dll
    0x0000000065980000 - 0x00000000659d6000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\swresample-ttv-0.dll
    0x000000006eb80000 - 0x000000006ec50000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\libmp3lame-ttv.dll
    0x00007ffe857e0000 - 0x00007ffe86b84000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\libmfxsw64.dll
    0x00007ffe93df0000 - 0x00007ffe93f1b000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\twitchsdk.dll
    0x00007ffe9b730000 - 0x00007ffe9b961000 C:\WINDOWS\SYSTEM32\WININET.dll
    0x00007ffe9bb50000 - 0x00007ffe9bdfb000 C:\WINDOWS\SYSTEM32\iertutil.dll
    0x0000000067320000 - 0x0000000067344000 C:\Program Files\Java\jre7\bin\sunec.dll
    0x0000000067310000 - 0x000000006731b000 C:\Program Files\Java\jre7\bin\sunmscapi.dll
    0x00007ffea5100000 - 0x00007ffea52d7000 C:\WINDOWS\system32\CRYPT32.dll
    0x00007ffea5030000 - 0x00007ffea5042000 C:\WINDOWS\system32\MSASN1.dll
    0x00007ffea25e0000 - 0x00007ffea265f000 C:\WINDOWS\SYSTEM32\dxgi.dll
    0x00007ffe842f0000 - 0x00007ffe857de000 C:\Program Files\Intel\Media SDK\libmfxhw64.dll
    0x00007ffe9d430000 - 0x00007ffe9d638000 C:\WINDOWS\SYSTEM32\d3d9.dll
    0x00007ffe9daa0000 - 0x00007ffe9dac1000 C:\WINDOWS\SYSTEM32\dxva2.dll
    0x00007ffea27d0000 - 0x00007ffea29d8000 C:\WINDOWS\SYSTEM32\d3d11.dll
    0x000000000fbc0000 - 0x000000000fc24000 C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091\OpenAL64.dll
    0x00007ffea58d0000 - 0x00007ffea5974000 C:\WINDOWS\SYSTEM32\clbcatq.dll
    0x00007ffea26f0000 - 0x00007ffea2752000 C:\WINDOWS\System32\MMDevApi.dll
    0x00007ffe91090000 - 0x00007ffe91117000 C:\WINDOWS\SYSTEM32\dsound.dll
    0x00007ffe9f240000 - 0x00007ffe9f2b6000 C:\WINDOWS\SYSTEM32\AUDIOSES.DLL
    0x00007ffe9d9c0000 - 0x00007ffe9d9cb000 C:\WINDOWS\SYSTEM32\Secur32.dll
    0x00007ffe970f0000 - 0x00007ffe970fc000 C:\WINDOWS\SYSTEM32\ondemandconnroutehelper.dll
    0x00007ffe9ec80000 - 0x00007ffe9ed45000 C:\WINDOWS\SYSTEM32\winhttp.dll
    0x00007ffe9bfe0000 - 0x00007ffe9c148000 C:\WINDOWS\SYSTEM32\urlmon.dll
    0x00007ffea4430000 - 0x00007ffea449b000 C:\WINDOWS\system32\schannel.DLL
    0x00007ffea52e0000 - 0x00007ffea532c000 C:\WINDOWS\system32\WINTRUST.dll
    0x00007ffea4180000 - 0x00007ffea41a2000 C:\WINDOWS\SYSTEM32\gpapi.dll
    0x00007ffea4aa0000 - 0x00007ffea4ac4000 C:\WINDOWS\SYSTEM32\ncrypt.dll
    0x00007ffea4a60000 - 0x00007ffea4a9a000 C:\WINDOWS\SYSTEM32\NTASN1.dll
    0x00007ffe8c430000 - 0x00007ffe8c464000 C:\Windows\System32\cryptnet.dll
    0x00007ffea54b0000 - 0x00007ffea550a000 C:\WINDOWS\system32\WLDAP32.dll
    0x00007ffe98bd0000 - 0x00007ffe98beb000 C:\WINDOWS\system32\ncryptsslp.dll
    0x00007ffea01e0000 - 0x00007ffea01f9000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
    0x00007ffe991d0000 - 0x00007ffe99358000 C:\WINDOWS\SYSTEM32\dbghelp.dll

    VM Arguments:
    jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M -Djava.library.path=C:\Users\marti_000\AppData\Roaming\.minecraft\versions\Shaders 1.7.10\Shaders 1.7.10-natives-6267733547091
    java_command: net.minecraft.launchwrapper.Launch --username martin0leung --version Shaders 1.7.10 --gameDir C:\Users\marti_000\AppData\Roaming\.minecraft\Shaders1710 --assetsDir C:\Users\marti_000\AppData\Roaming\.minecraft\assets --assetIndex 1.7.10 --uuid 417d6e7245a84cc8a9dd90e25463ff52 --accessToken e38511bcf54446dca81c758df71922b9 --userProperties {twitch_access_token:[7866rs8n9bk96w9rv3zvf6cm97zv1ta]} --userType mojang --tweakClass cpw.mods.fml.common.launcher.FMLTweaker
    Launcher Type: SUN_STANDARD

    Environment Variables:
    PATH=
    [error occurred during error reporting (printing environment variables), id 0xc0000005]



    --------------- S Y S T E M ---------------

    OS: Windows 8 , 64 bit Build 9200

    CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 60 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, erms, ht, tsc, tscinvbit

    Memory: 4k page, physical 16440380k(12875284k free), swap 18537532k(14462612k free)

    vm_info: Java HotSpot(TM) 64-Bit Server VM (24.45-b08) for windows-amd64 JRE (1.7.0_45-b18), built on Oct 8 2013 05:47:22 by "java_re" with unknown MS VC++:1600

    time: Wed Aug 20 11:00:23 2014
    elapsed time: 23 seconds





    Processor: Intel(R) Core(TM) i7-4770S CPU @ 3.10Ghz 3.10 Ghz

    Installed memory (RAM): 16 Gb (15.7 GB usable)

    System Type: 64-bit Operating System, x64-Based Processeer

    Graphics Card: Intel(R) HD Graphics 4600
    Posted in: Minecraft Mods
  • To post a comment, please .