• 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Sp614x, I've just found a problem with the custom colours for the sky, underwater fog, etc. When I'm using texture packs with OptiFine, like Misa's HD pack or Jolicraft (which are meant to have custom sky colours), only the default sky colours are being rendered. MCPatcher works fine though. Sounds like a bug to me... or I'm missing something?

    Animated textures for items and blocks, as well as random mobs seems to work fine though.

    Edit: I'm using OptiFine Smooth A4, if that helps.
    Posted in: Minecraft Mods
  • 0

    posted a message on [Launcher] Magic Launcher 1.3.4 (mods, options, profiles, news)
    Quote from ragger

    -snip-


    Same problem (error) here... can't even access the setup menu :sad.gif:
    Posted in: Minecraft Tools
  • 0

    posted a message on [Launcher] Magic Launcher 1.3.4 (mods, options, profiles, news)
    Won't work anymore... :sad.gif:

    I was playing fine for a few hours until recently after killing a few cows and pigs. After killing another pig, I got a saving cuhnks screen then a white screen.

    Now when I login and start the game up again this is what I get:
    MagicMinecraftLauncher 0.8.7
    Exception in thread "main" java.lang.NoClassDefFoundError: aiw
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
        at java.lang.Class.getDeclaredMethod(Unknown Source)
        at magic.launcher.Launcher.a(Unknown Source)
        at magic.launcher.Launcher.main(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: aiw
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 5 more


    I have these mods, and they were working fine together before, and in previous versions of Minecraft:


    It also never used to say "not compatible", it only started saying that after the crashing started. Before that, it said OptiFine and ModLoader were OK. And the "Minecraft.jar:" field used to say "1.1" instead of "???".

    Edit: I just opened the minecraft.jar and it's no longer a clean 1.1 jar. I thought this launcher loaded mods without having to place the classes into the jar? I can see mod files for Rei's Minimap, TMI, etc. in the jar. This is weird since I strongly recall starting with a CLEAN 1.1 jar.
    Posted in: Minecraft Tools
  • 0

    posted a message on [64x] GLIMMAR'S STEAMPUNK v.22 NOW RELEASED! + Latest Newglim City Download! + GS Redstone Pipes Add-On Pack!
    Pack won't work any more... :Skeleton: version 3.4 works fine, but not 3.5. If I try switching to 3.5, it switches to the default pack. Tried redownloading from both mirrors.

    MC 1.0.0

    ---

    Other than that, it's a great pack.
    Posted in: Resource Packs
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from PhothreeniX

    Originally, I was going to take the time to do a proper benchmark of all the versions vs default with my hardware. But, I realized its mostly irrelevant considering I maintain three digit numbers in FPS, regardless of mods.

    So for kicks I did a comparison of overkill :smile.gif:
    -snip-


    Wow... now that's overkill... :rolleyes:

    I can max up to 1.4K FPS in Minecraft Classic. It's much lower in Beta and 1.0.0 though obviously.
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Edit: forum lag caused double post
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    I have a question/problem related to fancy fog... why doesn't it work for any of my computers? My laptop, has an AMD Mobility Radeon 3650, my desktop has an AMD Radeon 5570. Both can run mods such as the water shader fine, yet don't support fancy fog.. why is this? (I get a message in the CLI that says "Fancy fog: Not available (GL_NV_fog_distance)")

    Did you only enable the option for a certain number of GPUs, or what?

    And thanks for another update. I'm waiting until you update the multithreaded version though, better snow sounds great. :smile.gif:
    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from epic_wtf

    Since on the last few pages, there are some people wondering why the CMD file in the “Tips and tricks” section doesn't allow you to log in and thus preventing you from playing multiplayer. For this reason, sp614x, can you please change it to this:



    I think this would cause less confusion, because this command starts minecraft with the regular login page and you can play multiplayer with less used memory and less lag.



    Slight OT:
    For those of you who love to play around with your computer and program settings, I want to show you how I start minecraft. This CMD file works best with new computers with recent multi-core CPUs.

    "C:\Program Files\Java\jre7\bin\java.exe" -server -Xmx256m -Xnoclassgc -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:-DisableExplicitGC -XX:+UseThreadPriorities -XX:+UseFastAccessorMethods -XX:+UseBiasedLocking -XX:+UseStringCache -XX:+UseCompressedOops -XX:+OptimizeStringConcat -XX:+TieredCompilation -XX:+AggressiveOpts -XX:UseSSE=4 -cp "full path of your Minecraft.exe" net.minecraft.LauncherFrame

    Together with Optifine MT and the latest 64-bit Java 7, minecraft runs fast and completely smooth. I will try to explain some of the options (poorly :biggrin.gif: ):

    -server
    Starts minecraft with the Server VM. On 64-bit JRE, the Server VM is the only available mode. So in this case, this switch does nothing. But on 32-bit JRE, there is also a Client VM. The Server VM is usually faster than the Client VM.

    -Xnoclassgc
    Please be careful with this switch. This disables class garbage collection. With Optifine it works fine. But if you have other mods this can potentially cause a “OutOfMemoryError”. If you encounter the error, remove this switch and try if minecraft runs better.

    -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC
    This activates the new Garbage-first GC. It should replace the concurrent mark-sweep GC sometime. It works best on multi-core CPUs and it can reduce lags caused by garbage colletion. Although the G1GC is quite new, I haven't face any problems yet, so you should give it a try.

    -XX:-DisableExplicitGC
    It deactivates the explicit GC calls. I don't know if minecraft or any mods use this. But it's recommended to deactivate it anyway because it reduce the performance. Java know when to do a garbage collection, you usually shouldn't tell Java when to do it.

    -XX:UseSSE=4
    It's obvious what it does. Try to find out which SSE version do your processor support. A great tool for this is CPU-Z. When you figure it out, please replace "4" with the applicable number.

    It would be great if you try this CMD out. (At least for the lulz :biggrin.gif: ) And please report back how your minecraft performes.


    It will work fine if you add your username (case-sensitive) and password after the "net.minecraft.LauncerFrame" bit. The password is not needed though if you want to play offline though, it's only really needed if you want to play SMP.

    Edit: just realised it doesn't actually log you in. I thought it did, because my skin was showing up in singleplayer instead of the default, after I added my account information to the batch file.

    oh well... would be great if it did work, Minecraft launches much faster this way than using the launcher.
    Posted in: Minecraft Mods
  • 0

    posted a message on How Terrible is My (And Your) Computer?
    OS: Windows 7 Home Premium x86, SP1
    Motherboard: Toshiba Satellite P300
    CPU: Intel Core 2 Duo, clocked @ 2.26GHz
    RAM: 4GB dual-channel DDR2, clocked @ 398MHz (2x2GB)
    GPU: ATI Mobility Radeon 3650, 512MB DDR2
    Storage: 391GB Fujitsu MHZ2400BT G1, 5,400RPM, SATA (79.5GB free space)
    External storage: 500GB Seagate Goflex drive, 2TB Western Digital 7,200RPM Elements drive (I run Minecraft, and most other games on this drive).

    Bought this laptop (Toshiba Satellite P300) back in 2008. It's been a great laptop, ran all the games I've thrown at it, at good/decent framerates. Came with Windows Vista preinstalled originally, I upgraded to 7 later.

    My desktop has better hardware, unfortunately I don't have access to it now, so I can't look up the hardware specs.
    Posted in: Computer Science and Technology
  • 0

    posted a message on cannot login to minecraft.net
    Same... I can login fine through the launcher, but not on minecraft.net, can't play Classic servers now... :opblock:
    Posted in: Legacy Support
  • 0

    posted a message on [1.2.5] Minecraft Console
    I installed this yesterday, was working fine, until today, I have the console keybind set to the GRAVE key. The next day when I went back on SSP again, I pressed the key, Minecraft crashed...

    Mods loaded: 5
    ModLoader 1.0.0
    mod_TooManyItems 1.0.0 2011-11-19
    mod_ReiMinimap v2.8_02 [1.0.0]
    mod_SpawnerGUI 1.0.0
    mod_Console 1.1

    Minecraft has crashed!
    ----------------------

    Minecraft has stopped running because it encountered a problem.

    If you wish to report this, please copy this entire text and email it to [email protected].
    Please include a description of what you did when the error occured.



    --- BEGIN ERROR REPORT 5741a5f1 --------
    Generated 29/11/11 4:33 PM

    Minecraft: Minecraft 1.0.0
    OS: Windows 7 (x86) version 6.1
    Java: 1.6.0_29, Sun Microsystems Inc.
    VM: Java HotSpot(TM) Client VM (mixed mode), Sun Microsystems Inc.
    LWJGL: 2.7.1
    OpenGL: ATI Mobility Radeon HD 3650 version 3.3.11079 Compatibility Profile Context, ATI Technologies Inc.

    java.util.ConcurrentModificationException
    at java.util.AbstractList$Itr.checkForComodification(Unknown Source)
    at java.util.AbstractList$Itr.next(Unknown Source)
    at GuiConsole.buildLines(GuiConsole.java:270)
    at GuiConsole.addLine(GuiConsole.java:283)
    at GuiConsole.addOutputMessage(GuiConsole.java:925)
    at GuiConsole.pullGuiList(GuiConsole.java:946)
    at GuiConsole.a(GuiConsole.java:351)
    at xe.a(SourceFile:95)
    at net.minecraft.client.Minecraft.a(SourceFile:466)
    at mod_Console.KeyboardEvent(mod_Console.java:14)
    at ModLoader.OnTick(ModLoader.java:1151)
    at EntityRendererProxy.b(EntityRendererProxy.java:16)
    at net.minecraft.client.Minecraft.x(SourceFile:738)
    at net.minecraft.client.Minecraft.run(SourceFile:658)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT 83132b69 ----------


    Posted in: Minecraft Mods
  • 0

    posted a message on No Sound in Minecraft Classic
    No longer getting ANY sound in Classic... I already have sound turned on in the options menu, and I tried turning the master volume all the way up to 100, still no sound...

    Was working fine a few weeks ago..?
    Posted in: Legacy Support
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    I've lost hope in finding a fix for these lag spikes :sad.gif: (I'm giving it a new name: LSOD II)... I downloaded and installed Gamebooster as suggested in a previous post. I tested Beta 1.8.1, and then Stable 1.0.0 (vanilla).

    - 1.8.1 performed worse, the spikes were more common. Gamebooster did not help whatsoever.
    - 1.0.0 performed better than 1.8.1, the spikes were less common. Within two hours of playing on 1.0.0, the first spike occurred. About ten minutes later, a second spike occurred. There were no more spikes after that. Gamebooster didn't help.

    Conclusion for Gamebooster: it didn't help solve my problem.

    I recently tried changing the chunk updates from 1 to 5, that didn't help either.
    Posted in: Minecraft Mods
  • 0

    posted a message on MAtmos - Environmental sound atmosphere simulator
    *Takes break for an hour or so*

    *comes back, starts up Minecraft again*
    *Starts to get back to work on mob grinder*
    *Saving chunks one second later*

    *SIGH*

    Mods loaded: 4
    ModLoader Beta 1.8.1
    mod_TooManyItems 1.8.1 2011-09-27
    mod_ReiMinimap v2.7_03 [Beta 1.8.1]
    mod_MAtmos 1.8.1 r6

    Minecraft has crashed!
    ----------------------

    Minecraft has stopped running because it encountered a problem.

    If you wish to report this, please copy this entire text and email it to [email protected].
    Please include a description of what you did when the error occured.



    --- BEGIN ERROR REPORT 5a1438e8 --------
    Generated 19/11/11 2:10 PM

    Minecraft: Minecraft Beta 1.8.1
    OS: Windows 7 (x86) version 6.1
    Java: 1.7.0_02-ea, Oracle Corporation
    VM: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
    LWJGL: 2.7.1
    OpenGL: ATI Mobility Radeon HD 3650 version 3.3.11079 Compatibility Profile Context, ATI Technologies Inc.

    java.lang.NullPointerException
    at MAtSoundManagerDefault.setupStreamingToken(MAtSoundManagerDefault.java:359)
    at matmos.engine.MAtmosStream.routine(MAtmosStream.java:109)
    at matmos.engine.MAtmosMachine.routine(MAtmosMachine.java:72)
    at matmos.engine.MAtmosKnowledge.routine(MAtmosKnowledge.java:620)
    at mod_MAtmos.tickThink(mod_MAtmos.java:808)
    at mod_MAtmos.OnTickInGame(mod_MAtmos.java:191)
    at BaseMod.OnTickInGame(BaseMod.java:80)
    at ModLoader.OnTick(ModLoader.java:1016)
    at EntityRendererProxy.b(EntityRendererProxy.java:16)
    at net.minecraft.client.Minecraft.run(SourceFile:689)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT c35c5331 ----------


    Posted in: Minecraft Mods
  • 0

    posted a message on OptiFine HD (FPS Boost, Dynamic Lights, Shaders and much more)
    Quote from pwnedgod

    I use chrome but it still gives me a lot of memory use. But just terminate those unneeded application.

    ________________________________________________________________________________________

    Also sp614x. Have you fixed the modloader handheld item bug in the AA Version of OptiFine?


    A lot of those processes are using very little resources, and are just idling. I've tried closing un-needed programs and killing unnecessary processes before. Didn't help. :sad.gif:

    I don't recall having this problem in vanilla Minecraft either. This problem started a few weeks ago, but only recently got worse, to the point I can't stand it anymore.
    Posted in: Minecraft Mods
  • To post a comment, please .