if you would have red what he said he said no black screen or eror report!!!!!!!!!just stuck on done loding and i have the same problem!!!!!!
Same here. Tried it 10 times, always the same result. I had to follow Windows instructions on my Mac, but i don't see anything that should really be changed.
Rollback Post to RevisionRollBack
Just a dude that's into Minecraft that's always looking for new texture packs, mods, etc.
Same here. Tried it 10 times, always the same result. I had to follow Windows instructions on my Mac, but i don't see anything that should really be changed.
indeed i am also running off of mac. i have re installed a vanilla minecraft, re installed modloader, and still forge doesnt work. i get stuck on the done loading screen no matter how many times i do it differently
Rollback Post to RevisionRollBack
A wise person once said: "Offense is never given, only taken."
Ok, so i installed modloader 1.2.3 using MCpatcher, then i installed the .59 (latest) version of forge, and it worked! Running on a mac, i am no longer getting stuck at the done loading screen!
Rollback Post to RevisionRollBack
A wise person once said: "Offense is never given, only taken."
Same here. Tried it 10 times, always the same result. I had to follow Windows instructions on my Mac, but i don't see anything that should really be changed.
When it gets stuck at the loading screen, that means that the launcher cannot find minecraft.jar. Make sure it is named correctly.
Client Build 57 (1.4.0.57) is incompatible with MCPatcher's Custom Colors mod. But I need either build 55, 56, or 57 for Railcraft to be compatible. Yet I also want the Custom Colors mod to make texture packs work fully.
java.lang.NullPointerException
at com.pclewis.mcpatcher.mod.Colorizer.colorizeWater(Colorizer.java:132)
at agp.c(SourceFile:40)
at vh.n(vh.java:2241)
at vh.b(vh.java:126)
at cr.a(WorldRenderer.java:211)
at l.a(RenderGlobal.java:1461)
at lo.a(EntityRenderer.java:1072)
at lo.b(EntityRenderer.java:905)
at EntityRendererProxy.b(EntityRendererProxy.java:21)
at net.minecraft.client.Minecraft.x(Minecraft.java:892)
at net.minecraft.client.Minecraft.run(Minecraft.java:747)
at java.lang.Thread.run(Unknown Source)
Client Build 57 (1.4.0.57) is incompatible with MCPatcher's Custom Colors mod. But I need either build 55, 56, or 57 for Railcraft to be compatible. Yet I also want the Custom Colors mod to make texture packs work fully.
java.lang.NullPointerException
at com.pclewis.mcpatcher.mod.Colorizer.colorizeWater(Colorizer.java:132)
at agp.c(SourceFile:40)
at vh.n(vh.java:2241)
at vh.b(vh.java:126)
at cr.a(WorldRenderer.java:211)
at l.a(RenderGlobal.java:1461)
at lo.a(EntityRenderer.java:1072)
at lo.b(EntityRenderer.java:905)
at EntityRendererProxy.b(EntityRendererProxy.java:21)
at net.minecraft.client.Minecraft.x(Minecraft.java:892)
at net.minecraft.client.Minecraft.run(Minecraft.java:747)
at java.lang.Thread.run(Unknown Source)
Please fix.
That's not Forge's problem. It's MCPatcher's. You can use Optifine instead of MCPatcher--it's compatible with Forge and it has custom colors, HD textures, 100% FPS increase, and more.
When i'm messing around with forge network code i somehow encountered a NPE on the server.
java.lang.NullPointerException
at pwnedgod.wirelessstorage.PG_PacketGuiSyncSend.readData(PG_PacketGuiSyncSend.java:42)
at mod_PGEU$PacketHandler.onPacketData(mod_PGEU.java:54)
at forge.MessageManager.dispatchIncomingMessage(MessageManager.java:427)
at mk.a(NetServerHandler.java:1012)
at gk.a(SourceFile:46)
at qo.b(NetworkManager.java:353)
at mk.a(NetServerHandler.java:69)
at fj.a(SourceFile:108)
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:558)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:439)
at dm.run(SourceFile:490)
package net.minecraft.src.pwnedgod.wirelessstorage;
import java.io.*;
import net.minecraft.src.ModLoader;
public class PG_PacketGuiSyncSend extends PG_PacketTileEntity
{
public static final int ID = 11;
public int freq;
public int outputTier;
public int currentBehavior;
public String owner;
public PG_PacketGuiSyncSend(){}
public PG_PacketGuiSyncSend(int x, int y, int z)
{
super(x, y, z);
}
public int getId()
{
return ID;
}
public void writeData(DataOutputStream data) throws IOException
{
super.writeData(data);
data.writeInt(freq);
data.writeInt(outputTier);
data.writeInt(currentBehavior);
data.writeUTF(owner);
}
public void readData(DataInputStream data) throws IOException
{
super.readData(data);
freq = data.readInt();
outputTier = data.readInt();
currentBehavior = data.readInt();
owner = data.readUTF();
}
}
After this NPE all other NPE stops at the dispatchIncomingMessage
with this error:
java.lang.NullPointerException
at forge.MessageManager.dispatchIncomingMessage(MessageManager.java:423)
at mk.a(NetServerHandler.java:1012)
at gk.a(SourceFile:46)
at qo.b(NetworkManager.java:353)
at mk.a(NetServerHandler.java:69)
at fj.a(SourceFile:108)
at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:558)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:439)
at dm.run(SourceFile:490)
i know the net code wasn't finished but i want to test it.
Ye Forge seems to have included a ModLoader.class of its own that (by comparing it to the client jar as well as both the server and client 1.3.0 jars) probably is there by accident. :/
The blue screen means a mod is conflicting. Try logging into a singleplayer map, If you modded either client or server before and remodded you could have reminent mod data from the previous time. If the same error occurs on single player it's probably this and you might need to redownload your entire .minecraft (backup saves) If it doesnt happen on single player, it could still be this, or your server has a reminent or current mod your client doesnt.
Also it could be a redpower and IC conflict I heard about, where you may need to open your redpower.cfg file and change the id values for array.array.id to 193 and machinePanel.id to 192
but i place the modloader.class from modloadermp server but still i get this error
Unexpected exception
java.lang.NullPointerException
at je.a(ServerConfigurationManager.java:117)
at wx.<init>(EntityTracker.java:27)
at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420)
at dm.run(SourceFile:490)
but i place the modloader.class from modloadermp server but still i get this error
Unexpected exception
java.lang.NullPointerException
at je.a(ServerConfigurationManager.java:117)
at wx.<init>(EntityTracker.java:27)
at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420)
at dm.run(SourceFile:490)
I still get this error
java.lang.NullPointerException at je.a(ServerConfigurationManager.java:117) at wx.<init>(EntityTracker.java:27) at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420) at dm.run(SourceFile:490)
or forge or modloaderMP is not patch to the 1.2.3? maybe you giv me the link to modloaderMP and forge again becoz they r too many link to download forge and modloaderMP,im afraid that im download the wrong one GIVE ME DIRECT LINK NOT PAGEI still get this error
java.lang.NullPointerException at je.a(ServerConfigurationManager.java:117) at wx.<init>(EntityTracker.java:27) at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420) at dm.run(SourceFile:490)
or forge or modloaderMP is not patch to the 1.2.3? maybe you giv me the link to modloaderMP and forge again becoz they r too many link to download forge and modloaderMP,im afraid that im download the wrong one GIVE ME DIRECT LINK NOT PAGE
FIX THIS PLEASE I NEED TO PLAY INDUSTRIAL WITH MY FRIEND
This doesn't look like a Forge issue.
For direct downloads try going to the download thread as you're told in the original post...
Anyways, Forge will update to 1.2.4 when MLMP updates to 1.2.4.
If it isn't updated by the time I wake up tomarrow, I'll update MLMP myself.
This doesn't look like a Forge issue.
For direct downloads try going to the download thread as you're told in the original post...
Anyways, Forge will update to 1.2.4 when MLMP updates to 1.2.4.
If it isn't updated by the time I wake up tomarrow, I'll update MLMP myself.
"Straight port from 1.2.3, changed nothing except the version printouts."
If you're waiting for the official update, that's fine... but unless it's a lot more complex than I've experienced, I don't think there should be too much of an issue if you used that until the official version comes out.
Builcraft authors answered why 58 version don't work. 57 will.
Same here. Tried it 10 times, always the same result. I had to follow Windows instructions on my Mac, but i don't see anything that should really be changed.
indeed i am also running off of mac. i have re installed a vanilla minecraft, re installed modloader, and still forge doesnt work. i get stuck on the done loading screen no matter how many times i do it differently
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumWhen it gets stuck at the loading screen, that means that the launcher cannot find minecraft.jar. Make sure it is named correctly.
that makes alot of sense cuz before i was decompiling the minecraft.jar but mcpatcher edits it directly leaving it in unaltered state
Checked that. It is. Not sure what the problem is. Tried recommended and latest. Oh well.
-
View User Profile
-
View Posts
-
Send Message
Curse Premiumat com.pclewis.mcpatcher.mod.Colorizer.colorizeWater(Colorizer.java:132)
at agp.c(SourceFile:40)
at vh.n(vh.java:2241)
at vh.b(vh.java:126)
at cr.a(WorldRenderer.java:211)
at l.a(RenderGlobal.java:1461)
at lo.a(EntityRenderer.java:1072)
at lo.b(EntityRenderer.java:905)
at EntityRendererProxy.b(EntityRendererProxy.java:21)
at net.minecraft.client.Minecraft.x(Minecraft.java:892)
at net.minecraft.client.Minecraft.run(Minecraft.java:747)
at java.lang.Thread.run(Unknown Source)
Please fix.
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumThat's not Forge's problem. It's MCPatcher's. You can use Optifine instead of MCPatcher--it's compatible with Forge and it has custom colors, HD textures, 100% FPS increase, and more.
package net.minecraft.src.pwnedgod.wirelessstorage; import java.io.*; import net.minecraft.src.ModLoader; public class PG_PacketGuiSyncSend extends PG_PacketTileEntity { public static final int ID = 11; public int freq; public int outputTier; public int currentBehavior; public String owner; public PG_PacketGuiSyncSend(){} public PG_PacketGuiSyncSend(int x, int y, int z) { super(x, y, z); } public int getId() { return ID; } public void writeData(DataOutputStream data) throws IOException { super.writeData(data); data.writeInt(freq); data.writeInt(outputTier); data.writeInt(currentBehavior); data.writeUTF(owner); } public void readData(DataInputStream data) throws IOException { super.readData(data); freq = data.readInt(); outputTier = data.readInt(); currentBehavior = data.readInt(); owner = data.readUTF(); } }After this NPE all other NPE stops at the dispatchIncomingMessage
with this error:
i know the net code wasn't finished but i want to test it.
So how do i fix this?
It probably won't, because 1.2.4 is a useless update. Just use 1.2.3
but i place the modloader.class from modloadermp server but still i get this error
Unexpected exception
java.lang.NullPointerException
at je.a(ServerConfigurationManager.java:117)
at wx.<init>(EntityTracker.java:27)
at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420)
at dm.run(SourceFile:490)
I still get this error
java.lang.NullPointerException
at je.a(ServerConfigurationManager.java:117)
at wx.<init>(EntityTracker.java:27)
at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420)
at dm.run(SourceFile:490)
or forge or modloaderMP is not patch to the 1.2.3?
maybe you giv me the link to modloaderMP and forge again becoz they r too many link to download forge and modloaderMP,im afraid that im download the wrong one
GIVE ME DIRECT LINK NOT PAGEI still get this error
java.lang.NullPointerException
at je.a(ServerConfigurationManager.java:117)
at wx.<init>(EntityTracker.java:27)
at net.minecraft.server.MinecraftServer.s(MinecraftServer.java:205)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:420)
at dm.run(SourceFile:490)
or forge or modloaderMP is not patch to the 1.2.3?
maybe you giv me the link to modloaderMP and forge again becoz they r too many link to download forge and modloaderMP,im afraid that im download the wrong one
GIVE ME DIRECT LINK NOT PAGE
FIX THIS PLEASE I NEED TO PLAY INDUSTRIAL WITH MY FRIEND
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumFor direct downloads try going to the download thread as you're told in the original post...
Anyways, Forge will update to 1.2.4 when MLMP updates to 1.2.4.
If it isn't updated by the time I wake up tomarrow, I'll update MLMP myself.
Actually, AtomicStryker have just post an update an hour ago.
http://www.minecraft...st__p__13764789
-
View User Profile
-
View Posts
-
Send Message
Curse Premium-
View User Profile
-
View Posts
-
Send Message
Curse Premium"Straight port from 1.2.3, changed nothing except the version printouts."
If you're waiting for the official update, that's fine... but unless it's a lot more complex than I've experienced, I don't think there should be too much of an issue if you used that until the official version comes out.
KBI Enriched Gravel Mod -- sift out nuggets and chunks and make gravel useful! (Outdated)
Tinker's Construct Recovery Addon -- get back some of your half-used tool materials! (Outdated)