Jump to content

robin4002

Forge Modder
  • Posts

    283
  • Joined

  • Last visited

Everything posted by robin4002

  1. read the EAQ. Download http://files.minecraftforge.net/fmllibs/argo-small-3.2.jar, http://files.minecraftforge.net/fmllibs/guava-14.0-rc3.jar, http://files.minecraftforge.net/fmllibs/asm-all-4.1.jar, http://files.minecraftforge.net/fmllibs/bcprov-jdk15on-148.jar, http://files.minecraftforge.net/fmllibs/deobfuscation_data_1.5.2.zip, http://files.minecraftforge.net/fmllibs/scala-library.jar and put in .minecraft/lib
  2. .log file can be open with windows text editor ...
  3. We need your log. Without your log we can not help you Is that hard ? ...
  4. bin/Minecraft.jar -> net.minecraft.client.Minecraft.java -> public static File getMinecraftDir() { if (minecraftDir == null) { minecraftDir = getAppDir("minecraft"); } return minecraftDir; } You must change this code. But change the main minecraft class is bad. You can use java reflection to modify this field, is that FTB's Launcher does : https://github.com/Slowpoke101/FTBLaunch/blob/master/src/net/ftb/mclauncher/MinecraftLauncher.java#L185
  5. try with /mods/mar21/textures/gui/powerMelter.png You forgot a /
  6. I'm not sure it will work, add "--nogui" at the end of your batch file. Exemple : java -Xms1024M -Xmx1024M -jar minecraftforge-universal-1.5.2-7.8.1.737.jar --nogui
  7. Like VengeanceSoldier said, read the tutorial. But in your main class put this : Side side = FMLCommonHandler.instance().getEffectiveSide(); if (side == Side.CLIENT) { MinecraftForge.EVENT_BUS.register(new YourMod_EventSounds()); } Not this : MinecraftForge.EVENT_BUS.register(new YourMod_EventSounds()); if you do not use "Side side = FMLCommonHandler.instance().getEffectiveSide(); if (side == Side.CLIENT){}" the server will crash
  8. Download http://files.minecraftforge.net/fmllibs/argo-small-3.2.jar, http://files.minecraftforge.net/fmllibs/guava-14.0-rc3.jar, http://files.minecraftforge.net/fmllibs/asm-all-4.1.jar, http://files.minecraftforge.net/fmllibs/bcprov-jdk15on-148.jarhttp://files.minecraftforge.net/fmllibs/deobfuscation_data_1.5.2.zip, http://files.minecraftforge.net/fmllibs/scala-library.jar and put all in .minecraft/lib It's written in the EAQ ...
  9. Read the EAQ ... 2013-06-22 10:14:40 [FINEST] [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/deobfuscation_data_1.5.2.zip 2013-06-22 10:14:40 [ForgeModLoader] Downloading file http://files.minecraftforge.net/fmllibs/deobfuscation_data_1.5.2.zip 2013-06-22 10:14:45 [sEVERE] [ForgeModLoader] There was a problem downloading the file deobfuscation_data_1.5.2.zip automatically. Perhaps you have an environment without internet access. You will need to download the file manually or restart and let it try again Download http://files.minecraftforge.net/fmllibs/deobfuscation_data_1.5.2.zip and put in .minecraft/lib folder
  10. What other mods have you installed ? Ladder work for me with the last build (7.8.1.737)
  11. If you get a error with "java.lang.NoClassDefFoundError: net/minecraft/client/something" it means that you install a mod incompatible smp I hope it can help you fix your problem alone (some modder are too stupid to use @SideOnly(Side.CLIENT) ...)
  12. Wrong section, post in the support : www.minecraftforge.net/forum/index.php/board,15.0.html java.lang.NoClassDefFoundError: net/minecraft/client/gui/GuiOptions You have install a client side mod, it can't work in smp, this mod is probably GUI-api, remove it And run your server with a batch script (.bat on windows, .sh on linux) java -Xmx1024M -Xms1024M -jar minecraft_server.jar
  13. public void load() { This is modloader method ... Try @Init public void load(FMLInitializationEvent event) { }
  14. https://github.com/robin4002/1.5.1_Test/blob/master/src/minecraft/test/common/ItemArmorTest.java#L19
  15. FMLInitializationEvent and not FMLInitializatiopnEvent ... LanguageRegistry and not languageregistry Also press ctrl + shift + o to organize import
  16. Have you installed optifine ? If yes, try without
  17. 2013-05-17 15:00:12 [sTDOUT] Adding Accesstransformer map: codechickencore_at.cfg 2013-05-17 15:00:12 [sTDERR] java.io.IOException: A hozzáférés megtagadva 2013-05-17 15:00:12 [sTDERR] at java.io.WinNTFileSystem.createFileExclusively(Native Method) 2013-05-17 15:00:12 [sTDERR] at java.io.File.createNewFile(Unknown Source) 2013-05-17 15:00:12 [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.extractTemp(CodeChickenCorePlugin.java:131) 2013-05-17 15:00:12 [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.scanCodeChickenMods(CodeChickenCorePlugin.java:102) 2013-05-17 15:00:12 [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.call(CodeChickenCorePlugin.java:67) 2013-05-17 15:00:12 [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.call(CodeChickenCorePlugin.java:1) 2013-05-17 15:00:12 [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:261) 2013-05-17 15:00:12 [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:155) 2013-05-17 15:00:12 [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchApplet(FMLRelauncher.java:242) 2013-05-17 15:00:12 [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.appletEntry(FMLRelauncher.java:212) 2013-05-17 15:00:12 [sTDERR] at net.minecraft.client.MinecraftApplet.init(MinecraftApplet.java:25) 2013-05-17 15:00:12 [sTDERR] at net.minecraft.Launcher.replace(Launcher.java:153) 2013-05-17 15:00:12 [sTDERR] at net.minecraft.Launcher$1.run(Launcher.java:94) 2013-05-17 15:00:12 [sTDERR] CodeChickenCore: Failed to read jar file: ChickenChunks.jar Error in the Accesstransformer of CodeChickenCore A hozzáférés megtagadva -> translate -> Access Denied Check your access right to your folder FTB
  18. You have install XyCraft for 1.5.x in minecraft 1.4.7...
  19. => http://www.minecraftforum.net/topic/909223-147152-smp-chickenbones-mods/ Try with the new version of CCC, NEI, EnderStorage and ChickenChunks
  20. Download forge again and put ALL .class and folder in your minecraft.jar (delete the folder META-INF in minecraft.jar before)
  21. Use this version of industrialcraft : http://ic2api.player.to:8080/job/IC2_lf/308/artifact/packages/industrialcraft-2_1.115.308-lf.jar It's work for me in 1.5.2.
×
×
  • Create New...

Important Information

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