Skip to content

Instantly share code, notes, and snippets.

[00:15:58] [main/INFO]: [HOOKLIB] Obfuscated: true
[00:15:58] [main/ERROR]: Unable to launch
java.lang.RuntimeException: An error occurred trying to configure the Minecraft home at D:\Games\Minecraft\Profiles\MyMod for Forge Mod Loader
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.setupHome(FMLLaunchHandler.java:111) ~[forge-1.12.2-14.23.5.2768.jar:?]
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.setupClient(FMLLaunchHandler.java:81) ~[forge-1.12.2-14.23.5.2768.jar:?]
at net.minecraftforge.fml.relauncher.FMLLaunchHandler.configureForClientLaunch(FMLLaunchHandler.java:42) ~[forge-1.12.2-14.23.5.2768.jar:?]
at net.minecraftforge.fml.common.launcher.FMLTweaker.injectIntoClassLoader(FMLTweaker.java:139) ~[forge-1.12.2-14.23.5.2768.jar:?]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:115) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
Caused by: java.lang.ExceptionInInitializerError
@hohserg1
hohserg1 / TileAssortedEnchantTableRenderer.scala
Created May 19, 2019 13:30
TileAssortedEnchantTableRenderer.scala
package hohserg.assortedenchanttable.render
import hohserg.assortedenchanttable.Main
import hohserg.assortedenchanttable.blocks.BlockAssortedEnchantTable.TileAssortedEnchantmentTable
import hohserg.assortedenchanttable.utils.Vec
import net.minecraft.client.renderer.tileentity.{TileEntityEnchantmentTableRenderer, TileEntityRendererDispatcher, TileEntitySpecialRenderer}
import net.minecraft.client.renderer.vertex.DefaultVertexFormats
import net.minecraft.client.renderer.{BufferBuilder, GlStateManager, Tessellator}
import net.minecraft.item.EnumDyeColor
import net.minecraft.tileentity.TileEntityEnchantmentTable
This file has been truncated, but you can view the full file.
[21:11:29] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[21:11:29] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[21:11:29] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[21:11:29] [main/INFO]: Forge Mod Loader version 14.23.5.2838 for Minecraft 1.12.2 loading
[21:11:29] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_201, running on Windows 10:amd64:10.0, installed at C:\Files\Games\CifrAzia\CifrAzia\runtime\64
[21:11:30] [main/INFO]: Searching C:\Files\Games\CifrAzia\CifrAzia\ESTERIA\mods for mods
[21:11:30] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in CifraziaMod-1_0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[21:11:30] [main/WARN]: The coremod org.cifrazia.CifraziaHookLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
[21:11:30] [main/WARN]: The coremod CifraziaHo
> Configure project :clean
Error getting artifact: net.minecraft:server:1.12.2-20200226.224830:srg@jar from MCPRepo
java.lang.ArrayIndexOutOfBoundsException: 1
at net.minecraftforge.gradle.common.util.HashStore.load(HashStore.java:93)
at net.minecraftforge.gradle.mcp.MCPRepo.findStepOutput(MCPRepo.java:307)
at net.minecraftforge.gradle.mcp.MCPRepo.findSrg(MCPRepo.java:298)
at net.minecraftforge.gradle.mcp.MCPRepo.findFile(MCPRepo.java:178)
at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:81)
at net.minecraftforge.gradle.common.util.BaseRepo.getArtifact(BaseRepo.java:41)
@hohserg1
hohserg1 / primer.md
Created May 29, 2020 20:06 — forked from williewillus/primer.md
Capabilities: A Primer (tm)

Capabilities

Another award-winning primer by williewillus

Capabilities...a wondrous new system. That you've probably been forced into using. But let's not talk about that and get straight into the learning!

Terms and definitions

  • Capability System - This entire system; what this primer is about. This system is named very literally for what it does.
    • Capability - the quality of being capable; capacity; ability
  • Capable - having power and ability
buildscript {
repositories {
maven { url = 'https://files.minecraftforge.net/maven' }
jcenter()
mavenCentral()
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:3.+'
}
}
---- Minecraft Crash Report ----
// This doesn't make any sense!
Time: 8/3/20 3:27 PM
Description: There was a severe problem during mod loading that has caused the game to fail
net.minecraftforge.fml.common.LoaderException: codechickenlib Failed to load new mod instance.
at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:606)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
Tweaker.setWorld(1)
Tweaker.setPlacementStage("PRE_POPULATE")
sky=forBiomes("minecraft:sky","minecraft:void")
white_flower = forBlock("botania:miniisland")
white_flower.setProperty("color", "white")
white_flowerDec = newOreDecoration()
white_flowerDec.set("count", 1)
white_flowerDec.set("mainBlock", white_flower)
def srcDelomboked = 'build/src-delomboked'
task delombok {
description 'Delomboks the entire source code tree'
def srcJava = 'src'
inputs.files file(srcJava)
outputs.dir file(srcDelomboked)
doLast {
def collection = files(configurations.compile + configurations.testCompile)
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not resolve net.industrial-craft:industrialcraft-2:2.2.825-experimental.
Required by:
project :