Jump to content

tehbeard

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by tehbeard

  1. I've also ran into the same issue, changing runtime/compile to classpath makes the script valid, but does NOT work as the compiler fails on symbols from those jars. Link to build script (post editor doesn't seem to work in chromium) https://gist.github.com/tehbeard/a909499f99dbb77c6e7a Edit: fixed it with a little help from irc, main points are: Have to declare them in the project dependencies (toplevel dependencies{} object, not the one in buildscript) Have to declare it after? the apply plugin forge. Link to my fixed build.gradle, lines 19-21 are how to declare adding all jars under the deps folder as needed for compiling. https://gist.github.com/tehbeard/0b11df8c8f8f6b7ffb24
  2. Hi, actually kinda funny. I've been working on a mod to add .schematic support to forge called LibSchematic (github repo: https://github.com/tehbeard/LibSchematic) Several things: [*]Can load .schematic from jar/resource path (if you can get an InputStream to it, it'll load it [*]Supports dynamic block ids (On the fly translation) [*]~98% Certain it doesn't trigger block updates (might trip something already in world, never really tested) [*]Mod block friendly, mods can provide a helper class for blocks to assist rotation and other actions.
  3. When I add a pack.mcmeta file (https://github.com/tehbeard/LibSchematic/blob/master/resources/pack.mcmeta) and attempt to run forge from eclipse, it produces this error. Renaming the file to a non mcmeta file stops the error. Any ideas on what the problem is? Jul 10, 2013 10:29:47 AM net.minecraft.launchwrapper.LogWrapper log INFO: Using tweak class name cpw.mods.fml.common.launcher.FMLTweaker 2013-07-10 10:29:47 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.19.789 for Minecraft 1.6.2 loading 2013-07-10 10:29:47 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_05, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7 2013-07-10 10:29:47 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-07-10 10:29:47 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg 2013-07-10 10:29:47 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg 2013-07-10 10:29:48 [sEVERE] [ForgeModLoader] The binary patch set is missing. Things are probably about to go very wrong. 2013-07-10 10:29:48 [iNFO] [ForgeModLoader] Launching wrapped minecraft 2013-07-10 10:29:48 [iNFO] [Minecraft-Client] Setting user: tehbeard 2013-07-10 10:29:48 [iNFO] [Minecraft-Client] (Session ID is null) 2013-07-10 10:29:49 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2013-07-10 10:29:49 [iNFO] [sTDERR] javax.imageio.IIOException: Can't read input file! 2013-07-10 10:29:49 [iNFO] [sTDERR] at javax.imageio.ImageIO.read(Unknown Source) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_110439_b(Minecraft.java:555) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:417) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.client.main.Main.main(Main.java:93) 2013-07-10 10:29:49 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-07-10 10:29:49 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:49 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:49 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2013-07-10 10:29:49 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-07-10 10:29:49 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2013-07-10 10:29:49 [iNFO] [sTDOUT] 2013-07-10 10:29:49 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-07-10 10:29:49 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-07-10 10:29:49 [iNFO] [sTDOUT] MinecraftForge v9.10.0.789 Initialized 2013-07-10 10:29:49 [iNFO] [ForgeModLoader] MinecraftForge v9.10.0.789 Initialized 2013-07-10 10:29:49 [iNFO] [sTDOUT] Replaced 101 ore recipies 2013-07-10 10:29:49 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-07-10 10:29:49 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\James\forge dev\minecraftTest\config\logging.properties 2013-07-10 10:29:49 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-07-10 10:29:49 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-07-10 10:29:49 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-07-10 10:29:49 [iNFO] [ForgeModLoader] Searching C:\Users\James\forge dev\minecraftTest\mods for mods 2013-07-10 10:29:50 [iNFO] [sTDOUT] OpenAL initialized. 2013-07-10 10:29:50 [WARNING] [tehbeard.schema] Mod tehbeard.schema is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 0.1 2013-07-10 10:29:50 [iNFO] [sTDOUT] 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.BaseMod. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.EntityRendererProxy. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.FMLRenderAccessLibrary. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.MLProp. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.ModLoader. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:50 [sEVERE] [ForgeModLoader] FML has detected a mod that is using a package name based on 'net.minecraft.src' : net.minecraft.src.TradeEntry. This is generally a severe programming error. There should be no mod code in the minecraft namespace. MOVE YOUR MOD! If you're in eclipse, select your source code and 'refactor' it into a new package. Go on. DO IT NOW! 2013-07-10 10:29:51 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 5 mods to load 2013-07-10 10:29:51 [iNFO] [mcp] Activating mod mcp 2013-07-10 10:29:51 [iNFO] [FML] Activating mod FML 2013-07-10 10:29:51 [iNFO] [Forge] Activating mod Forge 2013-07-10 10:29:51 [iNFO] [tehbeard.schematic] Activating mod tehbeard.schematic 2013-07-10 10:29:51 [iNFO] [tehbeard.schema] Activating mod tehbeard.schema 2013-07-10 10:29:51 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-07-10 10:29:51 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-07-10 10:29:51 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-07-10 10:29:51 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2013-07-10 10:29:51 [iNFO] [sTDOUT] // This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~] 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] Time: 10/07/13 10:29 2013-07-10 10:29:51 [iNFO] [sTDOUT] Description: Initializing game 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] java.lang.NullPointerException 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.resources.LanguageManager.func_135044_b(LanguageManager.java:96) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2013-07-10 10:29:51 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] -- Head -- 2013-07-10 10:29:51 [iNFO] [sTDOUT] Stacktrace: 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.resources.LanguageManager.func_135044_b(LanguageManager.java:96) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.startGame(Minecraft.java:475) 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] -- Initialization -- 2013-07-10 10:29:51 [iNFO] [sTDOUT] Details: 2013-07-10 10:29:51 [iNFO] [sTDOUT] Stacktrace: 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:796) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(Main.java:93) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2013-07-10 10:29:51 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2013-07-10 10:29:51 [iNFO] [sTDOUT] 2013-07-10 10:29:51 [iNFO] [sTDOUT] -- System Details -- 2013-07-10 10:29:51 [iNFO] [sTDOUT] Details: 2013-07-10 10:29:51 [iNFO] [sTDOUT] Minecraft Version: 1.6.2 2013-07-10 10:29:51 [iNFO] [sTDOUT] Operating System: Windows 7 (amd64) version 6.1 2013-07-10 10:29:51 [iNFO] [sTDOUT] Java Version: 1.7.0_05, Oracle Corporation 2013-07-10 10:29:51 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation 2013-07-10 10:29:51 [iNFO] [sTDOUT] Memory: 233934040 bytes (223 MB) / 323485696 bytes (308 MB) up to 3808428032 bytes (3632 MB) 2013-07-10 10:29:51 [iNFO] [sTDOUT] JVM Flags: 0 total; 2013-07-10 10:29:51 [iNFO] [sTDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used 2013-07-10 10:29:51 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2013-07-10 10:29:51 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 2013-07-10 10:29:51 [iNFO] [sTDOUT] FML: MCP v8.04 FML v6.2.19.789 Minecraft Forge 9.10.0.789 5 mods loaded, 5 mods active 2013-07-10 10:29:51 [iNFO] [sTDOUT] mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized 2013-07-10 10:29:51 [iNFO] [sTDOUT] FML{6.2.19.789} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized 2013-07-10 10:29:51 [iNFO] [sTDOUT] Forge{9.10.0.789} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized 2013-07-10 10:29:51 [iNFO] [sTDOUT] tehbeard.schematic{1.00} [LibSchematic] (bin) Unloaded->Constructed->Pre-initialized 2013-07-10 10:29:51 [iNFO] [sTDOUT] tehbeard.schema{0.1} [schema - LibSchematic example mod] (bin) Unloaded->Constructed->Pre-initialized 2013-07-10 10:29:51 [iNFO] [sTDOUT] Launched Version: 1.6 2013-07-10 10:29:51 [iNFO] [sTDOUT] LWJGL: 2.9.0 2013-07-10 10:29:51 [iNFO] [sTDOUT] OpenGL: GeForce GTX 460/PCIe/SSE2 GL version 4.3.0, NVIDIA Corporation 2013-07-10 10:29:51 [iNFO] [sTDOUT] Is Modded: Definitely; Client brand changed to 'fml,forge' 2013-07-10 10:29:51 [iNFO] [sTDOUT] Type: Client (map_client.txt) 2013-07-10 10:29:51 [iNFO] [sTDOUT] Resource Pack: Default 2013-07-10 10:29:51 [iNFO] [sTDOUT] Current Language: ~~ERROR~~ NullPointerException: null 2013-07-10 10:29:51 [iNFO] [sTDOUT] Profiler Position: N/A (disabled) 2013-07-10 10:29:51 [iNFO] [sTDOUT] Vec3 Pool Size: ~~ERROR~~ NullPointerException: null 2013-07-10 10:29:51 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\James\forge dev\minecraftTest\.\crash-reports\crash-2013-07-10_10.29.51-client.txt AL lib: (EE) alc_cleanup: 1 device not closed
×
×
  • Create New...

Important Information

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