Jump to content

jobob

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

jobob's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. And how i'm suppose to do whit launcher like MutliMc, to make a launcher who download the same mod I have on my server. That is not for playing minecraft forge lonely i need to make a launcher for the the server and I actually do it but i can't change where mods take place, i want them user the config file in the .name_of_my_server not in the .minecraft
  2. Hi guys, I come here because i think no one in the french community can help me .. ><. I've a MinecraftForge Server and i try to make a launcher for my serveur, i actually did it but i got a problem, i need to change in something in the client : In minecraft.java : public static File getMinecraftDir() { if (minecraftDir == null) { minecraftDir = getAppDir("minecraft"); } Everyone say i need to change "minecraft" with "name_of_the_server" so i take eclipse, MCP and forge source. But i got these error when i add a mods after doing the modification even if i'm changing nothing i got the same error. The mod who i tried to add is NotEnoughItem and i control it i've no problem of versions or bad install of forge i just got all the time this error : 2013-01-10 00:34:16 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.7.4.520 for Minecraft 1.4.7 loading 2013-01-10 00:34:16 [iNFO] [sTDOUT] Adding Accesstransformer map: codechickencore_at.cfg 2013-01-10 00:34:17 [iNFO] [sTDOUT] FMLRelauncher.relaunchApplet 2013-01-10 00:34:17 [iNFO] [sTDERR] java.lang.reflect.InvocationTargetException 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchApplet(FMLRelauncher.java:230) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.appletEntry(FMLRelauncher.java:212) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftApplet.init(MinecraftApplet.java:25) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.fmlReentry(Minecraft.java:2326) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchClient(FMLRelauncher.java:111) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleClientRelaunch(FMLRelauncher.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.main(Minecraft.java:2235) 2013-01-10 00:34:17 [iNFO] [sTDERR] at Start.main(Start.java:29) 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: cpw/mods/fml/common/registry/GameData 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.Item.<init>(Item.java:250) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.ItemTool.<init>(ItemTool.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.ItemSpade.<init>(ItemSpade.java:12) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.Item.<clinit>(Item.java:38) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.block.Block.<clinit>(Block.java:1319) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.renderer.texturefx.TextureWaterFX.<init>(TextureWaterFX.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.<init>(Minecraft.java:248) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.<init>(MinecraftAppletImpl.java:19) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftApplet.fmlInitReentry(MinecraftApplet.java:32) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 16 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: cpw.mods.fml.common.registry.GameData 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:423) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:356) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 25 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException 2013-01-10 00:34:17 [iNFO] [sTDERR] at codechicken.core.asm.FeatureHackTransformer.transform001(FeatureHackTransformer.java:39) 2013-01-10 00:34:17 [iNFO] [sTDERR] at codechicken.core.asm.FeatureHackTransformer.transform(FeatureHackTransformer.java:50) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:228) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:173) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 27 more 2013-01-10 00:34:17 [iNFO] [sTDERR] java.lang.reflect.InvocationTargetException 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchClient(FMLRelauncher.java:111) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleClientRelaunch(FMLRelauncher.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.main(Minecraft.java:2235) 2013-01-10 00:34:17 [iNFO] [sTDERR] at Start.main(Start.java:29) 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchApplet(FMLRelauncher.java:237) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.appletEntry(FMLRelauncher.java:212) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftApplet.init(MinecraftApplet.java:25) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.fmlReentry(Minecraft.java:2326) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 8 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) 2013-01-10 00:34:17 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Method.java:601) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchApplet(FMLRelauncher.java:230) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 11 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: cpw/mods/fml/common/registry/GameData 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.Item.<init>(Item.java:250) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.ItemTool.<init>(ItemTool.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.ItemSpade.<init>(ItemSpade.java:12) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.item.Item.<clinit>(Item.java:38) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.block.Block.<clinit>(Block.java:1319) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.renderer.texturefx.TextureWaterFX.<init>(TextureWaterFX.java:26) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.<init>(Minecraft.java:248) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.<init>(MinecraftAppletImpl.java:19) 2013-01-10 00:34:17 [iNFO] [sTDERR] at net.minecraft.client.MinecraftApplet.fmlInitReentry(MinecraftApplet.java:32) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 16 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: cpw.mods.fml.common.registry.GameData 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:185) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:423) 2013-01-10 00:34:17 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(ClassLoader.java:356) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 25 more 2013-01-10 00:34:17 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException 2013-01-10 00:34:17 [iNFO] [sTDERR] at codechicken.core.asm.FeatureHackTransformer.transform001(FeatureHackTransformer.java:39) 2013-01-10 00:34:17 [iNFO] [sTDERR] at codechicken.core.asm.FeatureHackTransformer.transform(FeatureHackTransformer.java:50) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:228) 2013-01-10 00:34:17 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:173) 2013-01-10 00:34:17 [iNFO] [sTDERR] ... 27 more So what i'm suppose to do for change the .minecraft in .name_of_my_server whit forge ? Thanks for answers
  3. Okay thanks for the answer it's work now but tell me i don't understand how i'm suppose to modd the source with other mod installed? I mean How can i decompile minecraft and with all of the mod on my server? I'm french and i've search a lot but it's hard to found something or someone who can explain how does i's work.
  4. Hi guys I tried to decompil a minecraft with just forge (minecraftforge-universal-6.0.1.349) installed, I've setup the MCP with the Forge Source but when i tried to decompile i got these : ================ Forge ModLoader Setup Start =================== Setting up MCP > Restoring commands.py backup Patching file C:\Users\Paul\Desktop\Serveur IC\MCP 1.4.2\runtime\commands.py patching file commands.py Commands patch applied successfully Copying FML conf Fixing MCP Workspace 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 == MCP 7.19 (data: 7.19, client: 1.4.2, server: 1.4.2) == # found ff, ff patches, srgs, name csvs, doc csvs, param csvs, renumber csv, ast yle, astyle config > Creating Retroguard config files !! Modified jar detected. Unpredictable results !! == Decompiling client using fernflower == > Creating SRGs > Applying Retroguard > Compiling AccessTransformer > Compiling MCPMerger > Running MCPMerger > Running AccessTransformer Forge config detected > Really Applying Retroguard > Applying MCInjector > Unpacking jar > Copying classes > Decompiling > Copying sources > Applying fernflower fixes > Applying patches 'runtime\bin\applydiff.exe -p1 -u -i ..\..\temp\temp.patch -d src\minecraft' fai led : 1 == ERRORS FOUND == 1 out of 1 hunk ignored -- saving rejects to file 'net\minecraft\src\DedicatedSe rv#' 1 out of 1 hunk ignored -- saving rejects to file 'net\minecraft\src\IntegratedS er#' 1 out of 1 hunk FAILED -- saving rejects to file 'net\minecraft\src\RenderGlobal .#' ================== > Cleaning comments - Done in 105.79 seconds == Reformating client == > Cleaning sources > Replacing OpenGL constants > Reformating sources - Done in 10.46 seconds !! renaming disabled !! !! Modified jar detected. Unpredictable results !! == Decompiling server using fernflower == > Creating SRGs > Applying Retroguard > Running AccessTransformer Forge config detected > Really Applying Retroguard '"C:\Program Files (x86)\Java\jdk1.7.0_09\bin\java" -cp "runtime\bin\retroguard. jar;lib;lib\*;jars\mi...' failed : 1 == ERRORS FOUND == Unrecoverable error during obfuscation, see log file for details. RetroGuard error: COM.rl.obf.classfile.ClassFileException: ClassNotFound asw ================== Decompile failed Decompile Exception: 1 Appuyez sur une touche pour continuer... Thanks for youur answer
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.