Skip to content

Instantly share code, notes, and snippets.

@AlexIIL
AlexIIL / sub-problem.txt
Created October 9, 2023 22:13
Remaining sub-problem in blanketcon 2023
Unsolved Sub Problem:
A: {org.quiltmc.loader.impl.plugin.fabric.FabricModOption 'polymer-blocks' from <mods>/DemoBox-1.0.0-beta.3.jar!/META-INF/jars/plasmid-0.5+1.20.1-SNAPSHOT.jar!/META-INF/jars/polymer-blocks-0.5.4+1.20.1.jar} weight -1000
B: {org.quiltmc.loader.impl.plugin.fabric.FabricModOption 'polymer-blocks' from <mods>/polymer-bundled-0.5.14+1.20.1.jar!/META-INF/jars/polymer-blocks-0.5.14+1.20.1.jar} weight -1001
C: {org.quiltmc.loader.impl.plugin.fabric.FabricModOption 'polymer-common' from <mods>/DemoBox-1.0.0-beta.3.jar!/META-INF/jars/plasmid-0.5+1.20.1-SNAPSHOT.jar!/META-INF/jars/polymer-core-0.5.4+1.20.1.jar!/META-INF/jars/polymer-networking-0.5.4+1.20.1.jar!/META-INF/jars/polymer-common-0.5.4+1.20.1.jar} weight -1004
D: {org.quiltmc.loader.impl.plugin.fabric.FabricModOption 'polymer-common' from <mods>/DemoBox-1.0.0-beta.3.jar!/META-INF/jars/plasmid-0.5+1.20.1-SNAPSHOT.jar!/META-INF/jars/polymer-resource-pack-0.5.4+1.20.1.jar!/META-INF/jars/polymer-common-0.5.4+1.20.1.jar} weight -1005
E: {org.q
Index Mod ID Version Plugin File(s) Sub-Files Sub-Files
20 OpenJDK 64-Bit Server VM java 17
buildcraft.extraction.preset.green
buildcraft.extraction.preset.red
buildcraft.extraction.preset.yellow
buildcraft.filteredBuffer.below25
buildcraft.filteredBuffer.below50
buildcraft.filteredBuffer.below75
buildcraft.fluid.below25
buildcraft.fluid.below50
buildcraft.fluid.below75
buildcraft.fluid.contains
@AlexIIL
AlexIIL / BuildCraft_Blocks.txt
Last active March 14, 2023 06:12
A list of every buildcraft item+block in 7.99.24.6
buildcraftbuilders:architect
buildcraftbuilders:builder
buildcraftbuilders:filler
buildcraftbuilders:frame
buildcraftbuilders:library
buildcraftbuilders:quarry
buildcraftbuilders:replacer
buildcraftcore:decorated
buildcraftcore:engine
buildcraftcore:marker_path
@AlexIIL
AlexIIL / BCSiliconModels.java
Last active April 20, 2020 18:51
Fabric custom item model loading
// A cut down version. This isn't compilabale as-is!
public class BCSiliconModels {
public static final ModelIdentifier CHIPSET_PART_A = new ModelIdentifier("buildcraftsilicon:redstone_chipset_a#inventory");
public static final ModelIdentifier CHIPSET_PART_B = new ModelIdentifier("buildcraftsilicon:redstone_chipset_b#inventory");
/** Called by the ClientModInitialiser */
public static void load() {
ModelLoadingRegistry.INSTANCE.registerAppender((manager, out) -> {
out.accept(CHIPSET_PART_A);
[23:49:54] [main/INFO]: Loading for game Minecraft 1.14.1 Pre-Release 2
[23:49:54] [ForkJoinPool-1-worker-9/WARN]: Mod ID fabric uses outdated schema version: 0 < 1
[23:49:54] [ForkJoinPool-1-worker-2/WARN]: Mod ID silk uses outdated schema version: 0 < 1
[23:49:54] [main/INFO]: [FabricLoader] Loading 4 mods: silk@1.2.2-37, fabric@0.2.7+build.127, fabricloader@0.4.7+build.146, libblockattributes@$version
[23:49:54] [main/WARN]: Mod `libblockattributes` ($version) does not respect SemVer - comparison support is limited.
[23:49:54] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.7.11 Source=file:/home/alexiil/.gradle/caches/modules-2/files-2.1/net.fabricmc/sponge-mixin/0.7.11.30/12878b7fa8bcc30844de4fa9e09d95c36b8c359b/sponge-mixin-0.7.11.30.jar Service=Knot/Fabric Env=CLIENT
/***********************************************************************************************************************************************************************************************************************/
/*
````
[16:23:36] [Client thread/INFO] [FML/]: FML has found a non-mod file [1.7.10] ClothingCraft 1.2.1.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[16:23:36] [Client thread/INFO] [FML/]: FML has found a non-mod file AgriCraft-1.7.10-1.5.0.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[16:23:36] [Client thread/INFO] [FML/]: FML has found a non-mod file AOBD-2.9.2.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[16:23:36] [Client thread/INFO] [FML/]: FML has found a non-mod file AOBDBB-1.0.6.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible.
[16:23:36] [Client thread/INFO] [FML/]: FML has found a non-mod file ArcaneArteries0.7.2.jar i
@AlexIIL
AlexIIL / images.json --definition
Last active December 18, 2016 02:31
CustomLoadingScreen_1.3.x json description
// config:
Array of ImageRender
// ImageRender:
"type":Type,
"resourceLocation":String,
"positionType":PositionType,
"texture": AreaSrc,
"position": AreaDst,
"text": String,
@AlexIIL
AlexIIL / OreDictionaryListener.java
Last active June 18, 2016 19:06
Oredictionary additions list -- for minecraft 1.8.9
/* Copyright (c) 2016 AlexIIL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
* Software.
*
@AlexIIL
AlexIIL / info
Created March 8, 2016 19:27
Oil migration problems
I'm having some problems migrating oil where my own block is being replaced by a dummy block, despite the remapping working.
I'm assuming that I am doing something stupid, but here is the remapping code: https://github.com/BuildCraft/BuildCraft/blob/7.2.x/common/buildcraft/BuildCraftFactory.java#L365-L400
and then when I load the world I find that my own block is no longer registered with forge (tested here https://github.com/BuildCraft/BuildCraft/blob/7.2.x/common/buildcraft/BuildCraftFactory.java#L365-L400 )
the fix *kinda* works (the oil renders) but it crashes quite quickly afterwards because the block is not registered
I haven't been able to make a test mod yet, but hopefulyl someone might be able to spot a stupid mistake I am doing?
fml log: https://gist.githubusercontent.com/AlexIIL/97e7343fd381460e1ccb/raw/caf230ddfa54edb51a08920a19c159470981a221/gistfile1.txt