Posted October 24, 201212 yr I am having trouble setting up minecraft forge, I follow all the right steps but when I run the install.sh, it thinks both my server and client are modified. The problem is, they are not. I have tried 10+ times. Here is the full log. [hide] $ ./install.sh ================ Forge ModLoader Setup Start =================== Setting up MCP > Backing up commands.py patching file commands.py Commands patch applied successfully Copying FML conf Fixing MCP Workspace Downloaded argo-2.25.jar successfully Downloaded guava-12.0.1.jar successfully Downloaded guava-12.0.1-sources.jar successfully Downloaded asm-all-4.0.jar successfully Downloaded asm-all-4.0-source.jar successfully Warning, Modified Client jar detected Continuing with decompile may produce unpredictable results If you continue, do not come to the FML or Forge team with decompile issues. If you really want to continue, enter "Yes" Yes Warning, Modified Server jar detected Continuing with decompile may produce unpredictable results If you continue, do not come to the FML or Forge team with decompile issues. If you really want to continue, enter "Yes" Yes Traceback (most recent call last): File "install.py", line 40, in <module> main() File "install.py", line 19, in main setup_fml(fml_dir, mcp_dir) File "/home/giodamelio/Downloads/mcp72/forge/fml/fml.py", line 253, in setup_fml decompile(None, False, False, True, True, False, True, False, False, False, False, False, False) TypeError: decompile() takes exactly 11 arguments (13 given) [/hide] So then I thought, maybe the file are being modified in some way I didn't think about. So I checked the hashes, and nope, the file is intact. $ cat md5s #md5 hashes for downloaded files #Tue Oct 23 16:56:13 PDT 2012 lwjgl.jar=7a07c4285fa9a6b204ba59f011f1cd77 jinput.jar=a7835a73a130656aba23e34147a55367 lwjgl_util.jar=f00470751cfc093ba760ca3cf10a512c linux_natives.jar.lzma=ffc02d3cc741ed24f719eca16d1a9a85 minecraft.jar=969699f13e5bbe7f12e40ac4f32b7d9a $ md5sum minecraft.jar 969699f13e5bbe7f12e40ac4f32b7d9a minecraft.jar I know in the past it has been said that if forge says its modified then it is(here, here, here), but I think that something is going on here. What else could I do since I know that the client has not been modified?
October 24, 201212 yr Force update minecraft, re-setup mcp. Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 24, 201212 yr Author Force update minecraft, re-setup mcp. Each time I tried it I did. Here were my steps. [*]Delete MPC folder [*]Re-extract MCP [*]Force update minecraft [*]Re-extract forge and move it to my MCP folder. [*]Copy new minecraft client and server files to the jars folder [*]Run forges install.sh It failed every time.
October 24, 201212 yr Did you actually copy the .minecraft/bin and .minecraft/resources folder into mcp/jars, along with minecraft_server.jar? EDIT: Don't mind me, just skim-reading... Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 24, 201212 yr Author Did you actually copy the .minecraft/bin and .minecraft/resources folder into mcp/jars, along with minecraft_server.jar? Edit:Yes Don't mind me, I just replied super fast
October 24, 201212 yr Is it still the same error? The first error wasn't because of the modified jars, it was because something was being called incorrectly: File "/home/giodamelio/Downloads/mcp72/forge/fml/fml.py", line 253, in setup_fml decompile(None, False, False, True, True, False, True, False, False, False, False, False, False) TypeError: decompile() takes exactly 11 arguments (13 given) So try downloading a newer forge... And can you tell me what version of python you have (python --version)? Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
October 24, 201212 yr Author Is it still the same error? The first error wasn't because of the modified jars, it was because something was being called incorrectly: File "/home/giodamelio/Downloads/mcp72/forge/fml/fml.py", line 253, in setup_fml decompile(None, False, False, True, True, False, True, False, False, False, False, False, False) TypeError: decompile() takes exactly 11 arguments (13 given) So try downloading a newer forge... And can you tell me what version of python you have (python --version)? I have been using forges latest's sucessful build, hot off the jenkins build system. I am using python 2.7.3
October 24, 201212 yr Is it still the same error? The first error wasn't because of the modified jars, it was because something was being called incorrectly: File "/home/giodamelio/Downloads/mcp72/forge/fml/fml.py", line 253, in setup_fml decompile(None, False, False, True, True, False, True, False, False, False, False, False, False) TypeError: decompile() takes exactly 11 arguments (13 given) So try downloading a newer forge... And can you tell me what version of python you have (python --version)? I have been using forges latest's sucessful build, hot off the jenkins build system. I am using python 2.7.3 Ah. that forge build is for 1.4.1pre. If deving on 1.3.2, you need build 318: http://jenkins.minecraftforge.net/job/forge/318/ Read the EAQ before posting! OR ELSE! This isn't building better software, its trying to grab a place in the commit list of a highly visible github project. www.forgeessentials.com Don't PM me, I don't check this account unless I have to.
October 24, 201212 yr Author Is it still the same error? The first error wasn't because of the modified jars, it was because something was being called incorrectly: File "/home/giodamelio/Downloads/mcp72/forge/fml/fml.py", line 253, in setup_fml decompile(None, False, False, True, True, False, True, False, False, False, False, False, False) TypeError: decompile() takes exactly 11 arguments (13 given) So try downloading a newer forge... And can you tell me what version of python you have (python --version)? I have been using forges latest's sucessful build, hot off the jenkins build system. I am using python 2.7.3 Ah. that forge build is for 1.4.1pre. If deving on 1.3.2, you need build 318: http://jenkins.minecraftforge.net/job/forge/318/ Ahh, that explains why forge thought my jars were modified... Thanks for the help. On a side note, how would I go about determining what version of minecraft a build of forge it? (besides looking through the commits one by one)
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.