Do I need to pass the Username, Password, and any other parameters to the minecraft.jar? If so, how?
I can tell you how
java -jar minecraft.jar <username> <password>
On Windows you can actually just do this
minecraft.exe <username> <password>
This will make Minecraft auto-log-on, but the minecraft.jar is not the same one as the one inside the bin folder
There is no conflict as the problem is you have too many mods installed that add items.
In other words there aren't more space for textures as the number of textures have exceeded 256 which is the maximum texture number for both blocks and items.
Uinstall a mod that adds new items and it should be fixed.
The server one I believe needs to extend BaseModMP as BaseMod belongs to ModLoader which is client not server
What you also can do is to replace ModLoader.AddRecipe with CraftingManager.addRecipe as they do the exact the same thing
Also the server version of the mod have to use the exact the same name as the client one so change
mod_ServerRecipes
to
mod_Recipes
0
I can tell you how
java -jar minecraft.jar <username> <password>
On Windows you can actually just do this
minecraft.exe <username> <password>
This will make Minecraft auto-log-on, but the minecraft.jar is not the same one as the one inside the bin folder
0
0
In other words there aren't more space for textures as the number of textures have exceeded 256 which is the maximum texture number for both blocks and items.
Uinstall a mod that adds new items and it should be fixed.
0
http://www.minecraftforum.net/topic/249637-100-optifine-hd-b2-fps-boost-hd-textures/
0
("X")
Now you can place it everywhere in the crafting grid and it'll work.
0
Then when using MCPatcher don't install the HD features, but only RandomMobs.
0
Also rename the filename
mod_ServerRecipes.java
to
mod_Recipes.java
0
What you also can do is to replace ModLoader.AddRecipe with CraftingManager.addRecipe as they do the exact the same thing
Also the server version of the mod have to use the exact the same name as the client one so change
mod_ServerRecipes
to
mod_Recipes
This is what I know, but might worth trying.
1
One important note: Did you use MCP while ModLoader where installed inside minecraft.jar? ModLoader needs to be installed before you can compile it.
1
0
MCP\temp\bin\minecraft
MCP\jars\bin\minecraft.jar
0
Delete META-INF
Risugami's ModLoader
Flan's ModloaderMP Client
SpaceToad's Minecraft Forge Client
0
Post the error.
0
0
Change
public String Version()
To
public String getVersion()
Also add this
public void load()
{
}