Minecraft: Minecraft Beta 1.7.3
OS: Windows 8.1 (amd64) version 6.3
Java: 1.8.0_66, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.9.0
OpenGL: GeForce GT 650M/PCIe/SSE2 version 4.5.0 NVIDIA 375.95, NVIDIA Corporation
java.lang.IllegalArgumentException: URI is not hierarchical
at java.io.File.<init>(File.java:418)
at ModLoader.init(ModLoader.java:809)
at ModLoader.AddAllRenderers(ModLoader.java:183)
at th.<init>(th.java:60)
at th.<clinit>(th.java:9)
at net.minecraft.client.Minecraft.a(SourceFile:318)
at net.minecraft.client.Minecraft.run(SourceFile:716)
at java.lang.Thread.run(Thread.java:745)
Minecraft without modloader runs fine.
More technical info for more technical people:
I have tried changing the java version to all of the following versions:
jre 6 (x86 and x64),
jre 6u30 (x86 and x64),
jre 8u66 (only x64), this is also my default jre,
jre 8u101 (x86 and x64)
opening any of the modloader class files with a hex editor and looking at bytes 04-07 shows that the class files are compiled with JAVA SE 1.6.0, but i have had no luck running with that version of java.
Finally managed to get it running, the jar file has to be in .minecraft/bin, the natives have to be there aswell, and then you also have to copy over lwjgl.jar over there and excute it with this huge command:
i'm trying to get modloader working on an old version of minecraft (don't ask me why).
After some searching i managed to find the correct version of modloader (http://www.mediafire.com/file/vb5bq3aoitdkgx8/ModLoader B1.7.3.zip) but it keeps crashing with this error:
Minecraft: Minecraft Beta 1.7.3
OS: Windows 8.1 (amd64) version 6.3
Java: 1.8.0_66, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.9.0
OpenGL: GeForce GT 650M/PCIe/SSE2 version 4.5.0 NVIDIA 375.95, NVIDIA Corporation
java.lang.IllegalArgumentException: URI is not hierarchical
at java.io.File.<init>(File.java:418)
at ModLoader.init(ModLoader.java:809)
at ModLoader.AddAllRenderers(ModLoader.java:183)
at th.<init>(th.java:60)
at th.<clinit>(th.java:9)
at net.minecraft.client.Minecraft.a(SourceFile:318)
at net.minecraft.client.Minecraft.run(SourceFile:716)
at java.lang.Thread.run(Thread.java:745)
Minecraft without modloader runs fine.
More technical info for more technical people:
I have tried changing the java version to all of the following versions:
jre 6 (x86 and x64),
jre 6u30 (x86 and x64),
jre 8u66 (only x64), this is also my default jre,
jre 8u101 (x86 and x64)
opening any of the modloader class files with a hex editor and looking at bytes 04-07 shows that the class files are compiled with JAVA SE 1.6.0, but i have had no luck running with that version of java.
SOLVED
Finally managed to get it running, the jar file has to be in .minecraft/bin, the natives have to be there aswell, and then you also have to copy over lwjgl.jar over there and excute it with this huge command:
java -Djava.library.path=natives/ -cp "minecraft.jar;lwjgl.jar;lwjgl_util.jar;lwjgl-2.9.1.jar" net.minecraft.client.Minecraft
Can you please make a video or something showing what you did? I'm still trying to get it to work and can't...