
lukas2005
Forge Modder-
Posts
289 -
Joined
-
Days Won
2
Everything posted by lukas2005
-
i am trying to make terrain smoother rather than just blocks and i need to know the size of textures for tesselator whole render method: (1.7.10) public static boolean renderChunk(int pass, int cx, int cy, int cz, IBlockAccess cache, RenderBlocks renderer) { if(!ModConfig.MOD_ENABLED) { return false; } else if(pass != 0) { return false; } else { Tessellator tess = Tessellator.getInstance(); int[] dims = new int[]{16, 16, 16}; int[] c = new int[]{cx, cy, cz}; int[] x = new int[3]; int[] r = new int[]{1, dims[0] + 3, (dims[0] + 3) * (dims[1] + 3)}; float[] grid = new float[8]; float[][] buffer = new float[r[2] * 2][3]; int bufno = 1; for(x[2] = 0; x[2] < dims[2] + 1; r[2] = -r[2]) { int m = 1 + (dims[0] + 3) * (1 + bufno * (dims[1] + 3)); for(x[1] = 0; x[1] < dims[1] + 1; m += 2) { for(x[0] = 0; x[0] < dims[0] + 1; ++m) { int mask = 0; int g = 0; for(int k = 0; k < 2; ++k) { for(int j = 0; j < 2; ++j) { for(int i = 0; i < 2; ++g) { float p = getBlockDensity(c[0] + x[0] + i, c[1] + x[1] + j, c[2] + x[2] + k, cache); grid[g] = p; mask |= p > 0.0F?1 << g:0; ++i; } } } if(mask != 0 && mask != 255) { Block block = Blocks.AIR; int meta = 0; label368: for(int k = -1; k < 2; ++k) { for(int j = -1; j < 2; ++j) { for(int i = -1; i < 2; ++i) { IBlockState bs = cache.getBlockState(new BlockPos(c[0] + x[0] + i, c[1] + x[1] + k, c[2] + x[2] + j)); Block b = bs.getBlock(); if(Main.shouldSmooth(b) && block != Blocks.SNOW_LAYER && block != Blocks.GRASS) { block = b; meta = b.getMetaFromState(bs); if(b == Blocks.SNOW_LAYER || b == Blocks.GRASS) { break label368; } } } } } int[] br = new int[]{c[0] + x[0], c[1] + x[1] + 1, c[2] + x[2]}; label594: for(int k = -1; k < 2; ++k) { for(int j = -2; j < 3; ++j) { for(int i = -1; i < 2; ++i) { IBlockState bs = cache.getBlockState(new BlockPos(c[0] + x[0] + i, c[1] + x[1] + k, c[2] + x[2] + j)); Block b = bs.getBlock(); if(!b.isOpaqueCube(bs)) { br[0] = c[0] + x[0] + i; br[1] = c[1] + x[1] + k; br[2] = c[2] + x[2] + j; break label594; } } } } IIcon icon = renderer.getBlockIconFromSideAndMetadata(block, 1, meta); double tu0 = (double)icon.getMinUV(); double tu1 = (double)icon.getMaxU(); double tv0 = (double)icon.getMinV(); double tv1 = (double)icon.getMaxV(); int edgemask = edge_table[mask]; int ecount = 0; float[] v = new float[]{0.0F, 0.0F, 0.0F}; for(int i = 0; i < 12; ++i) { if((edgemask & 1 << i) != 0) { ++ecount; int e0 = cube_edges[i << 1]; int e1 = cube_edges[(i << 1) + 1]; float g0 = grid[e0]; float g1 = grid[e1]; float t = g0 - g1; if(Math.abs(t) > 0.0F) { t = g0 / t; int j = 0; for(int k = 1; j < 3; k <<= 1) { int a = e0 & k; int b = e1 & k; if(a != b) { v[j] += a != 0?1.0F - t:t; } else { v[j] += a != 0?1.0F:0.0F; } ++j; } } } } float s = 1.0F / (float)ecount; for(int i = 0; i < 3; ++i) { v[i] = (float)(c[i] + x[i]) + s * v[i]; } int tx = x[0] == 16?0:x[0]; int ty = x[1] == 16?0:x[1]; int tz = x[2] == 16?0:x[2]; long i1 = (long)(tx * 3129871) ^ (long)tz * 116129781L ^ (long)ty; i1 = i1 * i1 * 42317861L + i1 * 11L; v[0] = (float)((double)v[0] - ((double)((float)(i1 >> 16 & 15L) / 15.0F) - 0.5D) * 0.2D); v[1] = (float)((double)v[1] - ((double)((float)(i1 >> 20 & 15L) / 15.0F) - 1.0D) * 0.2D); v[2] = (float)((double)v[2] - ((double)((float)(i1 >> 24 & 15L) / 15.0F) - 0.5D) * 0.2D); buffer[m] = v; for(int i = 0; i < 3; ++i) { if((edgemask & 1 << i) != 0) { int iu = (i + 1) % 3; int iv = (i + 2) % 3; if(x[iu] != 0 && x[iv] != 0) { int du = r[iu]; int dv = r[iv]; //tess.setBrightness(block.getMixedBrightnessForBlock(Minecraft.getMinecraft().theWorld, br[0], br[1], br[2])); //tess.setColorOpaque_I(block.colorMultiplier(cache, c[0] + x[0], c[1] + x[1], c[2] + x[2])); dont know what to do with these too float[] v0 = buffer[m]; float[] v1 = buffer[m - du]; float[] v2 = buffer[m - du - dv]; float[] v3 = buffer[m - dv]; if((mask & 1) != 0) { tess.addVertexWithUV((double)v0[0], (double)v0[1], (double)v0[2], tu0, tv1); tess.addVertexWithUV((double)v1[0], (double)v1[1], (double)v1[2], tu1, tv1); tess.addVertexWithUV((double)v2[0], (double)v2[1], (double)v2[2], tu1, tv0); tess.addVertexWithUV((double)v3[0], (double)v3[1], (double)v3[2], tu0, tv0); } else { tess.addVertexWithUV((double)v0[0], (double)v0[1], (double)v0[2], tu0, tv1); tess.addVertexWithUV((double)v3[0], (double)v3[1], (double)v3[2], tu1, tv1); tess.addVertexWithUV((double)v2[0], (double)v2[1], (double)v2[2], tu1, tv0); tess.addVertexWithUV((double)v1[0], (double)v1[1], (double)v1[2], tu0, tv0); } } } } } ++x[0]; } ++x[1]; } ++x[2]; bufno ^= 1; } return true; } } static { int k = 0; for(int i = 0; i < 8; ++i) { for(int j = 1; j <= 4; j <<= 1) { int p = i ^ j; if(i <= p) { cube_edges[k++] = i; cube_edges[k++] = p; } } } for(int i = 0; i < 256; ++i) { int em = 0; for(int j = 0; j < 24; j += 2) { boolean a = (i & 1 << cube_edges[j]) != 0; boolean b = (i & 1 << cube_edges[j + 1]) != 0; em |= a != b?1 << (j >> 1):0; } edge_table[i] = em; } }
-
is there a way to get a list of mods (modids) installed on runtime?
lukas2005 replied to lukas2005's topic in Modder Support
ok i will try this out -
oh maybe it's like that because I copied it off the internet but in eclipse, it looks fine I will try fixing that EDIT: It worked
-
2017-06-23 14:39:29,435 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-23 14:39:29,437 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [14:39:29] [main/INFO] [GradleStart]: Extra: [] [14:39:29] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Lukasz/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [14:39:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:39:29] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:39:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [14:39:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [14:39:30] [main/INFO] [FML]: Forge Mod Loader version 13.20.0.2294 for Minecraft 1.11.2 loading [14:39:30] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_111, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_111 [14:39:30] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [14:39:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [14:39:30] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [14:39:30] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [14:39:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:39:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:39:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:39:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:39:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:39:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:39:30] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [14:39:34] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [14:39:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:39:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:39:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:39:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [14:39:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [14:39:37] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2017-06-23 14:39:39,432 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-23 14:39:39,590 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-23 14:39:39,594 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [14:39:42] [Client thread/INFO]: Setting user: Player21 [14:39:51] [Client thread/WARN]: Skipping bad option: lastServer: [14:39:51] [Client thread/INFO]: LWJGL Version: 2.9.4 [14:39:59] [Client thread/INFO]: [STDOUT]: ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 6/23/17 2:39 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.11.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 419178504 bytes (399 MB) / 758644736 bytes (723 MB) up to 1905262592 bytes (1817 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 382.05' Renderer: 'GeForce GTX 750 Ti/PCIe/SSE2' [14:39:59] [Client thread/INFO] [FML]: MinecraftForge v13.20.0.2294 Initialized [14:39:59] [Client thread/INFO] [FML]: Replaced 232 ore recipes [14:40:00] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [14:40:00] [Client thread/INFO] [FML]: Searching D:\Programy\Deweloping\Projekty\eclipse\Java\Mod Making\TARDISMod\run\mods for mods [14:40:02] [Thread-6/INFO] [FML]: Using sync timing. 200 frames of Display.update took 351448843 nanos [14:40:04] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load [14:40:04] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, tardis] at CLIENT [14:40:04] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, tardis] at SERVER [14:40:06] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TARDIS Mod [14:40:06] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [14:40:06] [Client thread/INFO] [FML]: Found 445 ObjectHolder annotations [14:40:06] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [14:40:06] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [14:40:06] [Client thread/INFO] [FML]: Applying holder lookups [14:40:06] [Client thread/INFO] [FML]: Holder lookups applied [14:40:06] [Client thread/INFO] [FML]: Applying holder lookups [14:40:06] [Client thread/INFO] [FML]: Holder lookups applied [14:40:06] [Client thread/INFO] [FML]: Applying holder lookups [14:40:06] [Client thread/INFO] [FML]: Holder lookups applied [14:40:06] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [14:40:07] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [14:40:07] [Client thread/INFO] [FML]: Applying holder lookups [14:40:07] [Client thread/INFO] [FML]: Holder lookups applied [14:40:07] [Client thread/INFO] [FML]: Injecting itemstacks [14:40:07] [Client thread/INFO] [FML]: Itemstack injection complete [14:40:08] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 13.20.0.2345 [14:40:49] [Sound Library Loader/INFO]: Starting up SoundSystem... [14:40:50] [Thread-8/INFO]: Initializing LWJGL OpenAL [14:40:50] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:40:51] [Thread-8/INFO]: OpenAL initialized. [14:40:51] [Sound Library Loader/INFO]: Sound engine started [14:41:08] [Client thread/INFO] [FML]: Max texture size: 16384 [14:41:08] [Client thread/INFO]: Created: 16x16 textures-atlas [14:41:08] [Client thread/ERROR] [FML]: Exception loading model for variant tardis:blocktardis#normal for blockstate "tardis:blocktardis" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:blocktardis#normal with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:264) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:252) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:541) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:block/blocktardis with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:781) ~[ModelLoader$WeightedRandomModel.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1258) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more Caused by: com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 2 column 2 at com.google.gson.internal.Streams.parse(Streams.java:56) ~[Streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:429) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:338) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:127) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:941) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:781) ~[ModelLoader$WeightedRandomModel.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1258) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 2 column 2 at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1505) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1386) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:497) ~[JsonReader.class:?] at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:403) ~[JsonReader.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:666) ~[TypeAdapters$25.class:?] at com.google.gson.internal.bind.TypeAdapters$25.read(TypeAdapters.java:642) ~[TypeAdapters$25.class:?] at com.google.gson.internal.Streams.parse(Streams.java:44) ~[Streams.class:?] at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:54) ~[TreeTypeAdapter.class:?] at net.minecraft.util.JsonUtils.gsonDeserialize(JsonUtils.java:429) ~[JsonUtils.class:?] at net.minecraft.client.renderer.block.model.ModelBlock.deserialize(ModelBlock.java:51) ~[ModelBlock.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:338) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:127) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:941) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:781) ~[ModelLoader$WeightedRandomModel.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1258) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [14:41:08] [Client thread/ERROR] [FML]: Exception loading model for variant tardis:blocktardis#inventory for item "tardis:blocktardis", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:item/blocktardis with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:340) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:541) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: tardis:models/item/blocktardis.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:127) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:941) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [14:41:08] [Client thread/ERROR] [FML]: Exception loading model for variant tardis:blocktardis#inventory for item "tardis:blocktardis", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:blocktardis#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:348) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:541) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1257) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [14:41:10] [Client thread/INFO] [FML]: Injecting itemstacks [14:41:10] [Client thread/INFO] [FML]: Itemstack injection complete [14:41:10] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [14:41:10] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TARDIS Mod [14:41:21] [Client thread/INFO]: SoundSystem shutting down... [14:41:22] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [14:41:22] [Sound Library Loader/INFO]: Starting up SoundSystem... [14:41:22] [Thread-10/INFO]: Initializing LWJGL OpenAL [14:41:22] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:41:22] [Thread-10/INFO]: OpenAL initialized. [14:41:22] [Sound Library Loader/INFO]: Sound engine started [14:41:37] [Client thread/INFO] [FML]: Max texture size: 16384 [14:41:37] [Client thread/INFO]: Created: 512x512 textures-atlas [14:41:40] [Client thread/WARN]: Skipping bad option: lastServer: [14:41:42] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
-
fixed that up but still not working
-
Block textures are not working while everything is right to me. My GitHub Repo: https://github.com/lukas2005/TARDISMod PS I don't care about an item block texture for now because I want to have a custom itemblock
-
[1.11.2] How do I program a block with redstone properties
lukas2005 replied to The_G0dPiXeL's topic in Modder Support
I think that GitHub repo would b best but if you can't make it then use paste bin or code tags here on forums -
[1.11.2] How do I program a block with redstone properties
lukas2005 replied to The_G0dPiXeL's topic in Modder Support
it shloud extend BlockHorizontal -
everything works now
-
One more thing lang file does not seem to work even tho I have it in the game it still says item.tardis.name
-
Ok got this working
-
should I move the registerRender() and registerRenders() to the ClientProxy? should registry names and unlocalized names be lowercase too?
-
[1.11.2] How do I program a block with redstone properties
lukas2005 replied to The_G0dPiXeL's topic in Modder Support
from this point, it should be pretty easy all you need to do is chek if on a left and right sides there is power and if yes then give output PS I don't think you should use a variable for this because it is going to be shared by all the ANDGate blocks in Mc -
Fixed up all this stuff with the same result
-
Hello I am working on a mod but item models and textures are not working: log: 2017-06-16 16:59:54,886 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-16 16:59:54,888 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [16:59:54] [main/INFO] [GradleStart]: Extra: [] [16:59:55] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Lukasz/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [16:59:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [16:59:55] [main/INFO] [FML]: Forge Mod Loader version 13.20.0.2294 for Minecraft 1.11.2 loading [16:59:55] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_111, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_111 [16:59:55] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [16:59:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [16:59:55] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [16:59:55] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [16:59:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [16:59:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [16:59:55] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [16:59:59] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [16:59:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [16:59:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:00:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [17:00:00] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [17:00:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [17:00:00] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2017-06-16 17:00:01,864 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-16 17:00:01,962 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2017-06-16 17:00:01,968 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [17:00:02] [Client thread/INFO]: Setting user: Player897 [17:00:12] [Client thread/WARN]: Skipping bad option: lastServer: [17:00:12] [Client thread/INFO]: LWJGL Version: 2.9.4 [17:00:20] [Client thread/INFO]: [STDOUT]: ---- Minecraft Crash Report ---- // I'm sorry, Dave. Time: 6/16/17 5:00 PM Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.11.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 414482208 bytes (395 MB) / 757071872 bytes (722 MB) up to 1905262592 bytes (1817 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 382.05' Renderer: 'GeForce GTX 750 Ti/PCIe/SSE2' [17:00:20] [Client thread/INFO] [FML]: MinecraftForge v13.20.0.2294 Initialized [17:00:20] [Client thread/INFO] [FML]: Replaced 232 ore recipes [17:00:22] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [17:00:22] [Client thread/INFO] [FML]: Searching D:\Programy\Deweloping\Projekty\eclipse\Java\Mod Making\TARDISMod\run\mods for mods [17:00:23] [Thread-6/INFO] [FML]: Using sync timing. 200 frames of Display.update took 395247136 nanos [17:00:25] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load [17:00:26] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, tardis] at CLIENT [17:00:26] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, tardis] at SERVER [17:00:28] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TARDIS Mod [17:00:28] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [17:00:28] [Client thread/INFO] [FML]: Found 445 ObjectHolder annotations [17:00:28] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [17:00:28] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [17:00:28] [Client thread/INFO] [FML]: Applying holder lookups [17:00:28] [Client thread/INFO] [FML]: Holder lookups applied [17:00:28] [Client thread/INFO] [FML]: Applying holder lookups [17:00:28] [Client thread/INFO] [FML]: Holder lookups applied [17:00:28] [Client thread/INFO] [FML]: Applying holder lookups [17:00:28] [Client thread/INFO] [FML]: Holder lookups applied [17:00:28] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [17:00:28] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [17:00:28] [Client thread/INFO] [FML]: Applying holder lookups [17:00:28] [Client thread/INFO] [FML]: Holder lookups applied [17:00:28] [Client thread/INFO] [FML]: Injecting itemstacks [17:00:28] [Client thread/INFO] [FML]: Itemstack injection complete [17:00:29] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 13.20.0.2315 [17:00:59] [Sound Library Loader/INFO]: Starting up SoundSystem... [17:00:59] [Thread-8/INFO]: Initializing LWJGL OpenAL [17:00:59] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [17:00:59] [Thread-8/INFO]: OpenAL initialized. [17:00:59] [Sound Library Loader/INFO]: Sound engine started [17:01:16] [Client thread/INFO] [FML]: Max texture size: 16384 [17:01:16] [Client thread/INFO]: Created: 16x16 textures-atlas [17:01:16] [Client thread/ERROR] [FML]: Exception loading model for variant tardis:itemtardis#inventory for item "tardis:itemtardis", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:item/itemtardis with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:340) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:541) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: tardis:models/item/itemtardis.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:127) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:941) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [17:01:16] [Client thread/ERROR] [FML]: Exception loading model for variant tardis:itemtardis#inventory for item "tardis:itemtardis", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model tardis:itemtardis#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:348) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:541) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:387) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_111] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_111] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1257) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [17:01:18] [Client thread/INFO] [FML]: Injecting itemstacks [17:01:18] [Client thread/INFO] [FML]: Itemstack injection complete [17:01:18] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [17:01:18] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:TARDIS Mod [17:01:30] [Client thread/INFO]: SoundSystem shutting down... [17:01:30] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [17:01:30] [Sound Library Loader/INFO]: Starting up SoundSystem... [17:01:31] [Thread-10/INFO]: Initializing LWJGL OpenAL [17:01:31] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [17:01:31] [Thread-10/INFO]: OpenAL initialized. [17:01:31] [Sound Library Loader/INFO]: Sound engine started [17:01:46] [Client thread/INFO] [FML]: Max texture size: 16384 [17:01:46] [Client thread/INFO]: Created: 512x512 textures-atlas [17:01:48] [Client thread/WARN]: Skipping bad option: lastServer: [17:01:50] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [17:02:13] [Server thread/INFO]: Starting integrated minecraft server version 1.11.2 [17:02:13] [Server thread/INFO]: Generating keypair [17:02:13] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance [17:02:13] [Server thread/INFO] [FML]: Found a missing id from the world tardis:tardis [17:02:13] [Server thread/INFO] [FML]: Found a missing id from the world tardis:tardisblock [17:02:13] [Server thread/INFO] [FML]: Applying holder lookups [17:02:13] [Server thread/INFO] [FML]: Holder lookups applied [17:02:14] [Server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@4c5ecf71) [17:02:14] [Server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@4c5ecf71) [17:02:14] [Server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@4c5ecf71) [17:02:14] [Server thread/INFO]: Preparing start region for level 0 [17:02:15] [Server thread/INFO]: Preparing spawn area: 0% [17:02:16] [Server thread/INFO]: Preparing spawn area: 83% [17:02:17] [Server thread/INFO]: Changing view distance to 12, from 10 [17:02:20] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [17:02:20] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [17:02:20] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.11.2,FML@8.0.99.99,forge@13.20.0.2294,tardis@0.0.1,mcp@9.19 [17:02:20] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [17:02:20] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [17:02:20] [Server thread/INFO]: Player897[local:E:8221b3e9] logged in with entity id 362 at (-3.3170543266810686, 71.80948674189209, 252.75577146240582) [17:02:20] [Server thread/INFO]: Player897 joined the game [17:02:22] [Server thread/INFO]: Saving and pausing game... [17:02:22] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld [17:02:22] [Server thread/INFO]: Saving chunks for level 'New World'/Nether [17:02:23] [Server thread/INFO]: Saving chunks for level 'New World'/The End [17:02:23] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2986ms behind, skipping 59 tick(s) [17:02:23] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@7b9d069[id=29b47250-4236-34ae-8b46-7341b800b727,name=Player897,properties={},legacy=false] com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?] at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?] at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?] at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?] at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3056) [Minecraft.class:?] at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_111] at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_111] at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_111] at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_111] at java.lang.Thread.run(Unknown Source) [?:1.8.0_111] [17:02:41] [Server thread/INFO]: Player897 has just earned the achievement [Taking Inventory] [17:02:42] [Client thread/INFO]: [CHAT] Player897 has just earned the achievement [Taking Inventory] [17:24:53] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4296ms behind, skipping 85 tick(s) [18:42:58] [Client thread/INFO]: Stopping! [18:42:58] [Server thread/INFO]: Stopping server [18:42:59] [Server thread/INFO]: Saving players [18:42:59] [Server thread/INFO]: Saving worlds [18:42:59] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld [18:42:59] [Server thread/INFO]: Saving chunks for level 'New World'/Nether [18:42:59] [Server thread/INFO]: Saving chunks for level 'New World'/The End [18:43:00] [Server thread/INFO] [FML]: Unloading dimension 0 [18:43:00] [Server thread/INFO] [FML]: Unloading dimension -1 [18:43:00] [Server thread/INFO] [FML]: Unloading dimension 1 [18:43:00] [Client thread/INFO]: SoundSystem shutting down... [18:43:00] [Server thread/INFO] [FML]: Applying holder lookups [18:43:00] [Server thread/INFO] [FML]: Holder lookups applied [18:43:00] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Github: https://github.com/lukas2005/TARDISMod/tree/master
-
Figured this out thanks for help
-
what are these called what I want to do is render a texture wich is on top of the All GUIs EDIT: I tried using RenderGameOverlayEvent.Post with my original code and it worked but only in game but not in main menu