Skip to content

Instantly share code, notes, and snippets.

View KAfable's full-sized avatar

Kevin Afable (Vyraal1) KAfable

View GitHub Profile
---- Minecraft Crash Report ----
WARNING: coremods are present:
ForgelinPlugin (Forgelin-1.5.1.jar)
BCModPlugin (backpacks 1.12.2 - 3.4.2.jar)
IELoadingPlugin (ImmersiveEngineering-0.12-74-core.jar)
AppleCore (AppleCore-mc1.12.2-2.2.2.jar)
IELoadingPlugin (ImmersiveEngineering-0.12-75-core.jar)
AstralCore (astralsorcery-1.12.2-1.8.2.jar)
SFRCore (SolarFluxReborn_1.12.2-3.42r.jar)
@KAfable
KAfable / gist:e251023bafe52a9b8bfdd3e095c72074
Last active November 27, 2017 16:24
Mekanism crash only in pack, works fine by itself + Forge
---- Minecraft Crash Report ----
WARNING: coremods are present:
ForgelinPlugin (Forgelin-1.5.1.jar)
IELoadingPlugin (ImmersiveEngineering-0.12-74-core.jar)
AppleCore (AppleCore-mc1.12.2-2.2.2.jar)
IELoadingPlugin (ImmersiveEngineering-0.12-75-core.jar)
AstralCore (astralsorcery-1.12.2-1.8.2.jar)
SFRCore (SolarFluxReborn_1.12.2-3.42r.jar)
CTMCorePlugin (CTM-MC1.12-0.2.3.9.jar)
{
"registryname": "portal_fabricator",
"localizedname": "Portal Fabricator",
"color": "474c4f",
"parts": [
{
"x": 0,
"y": 0,
"z": 0,
"elements": [
{
"machine": "portal_fabricator",
"registryName": "tier1Portal",
"recipeTime": 200,
"requirements": [
{
"type": "item",
"io-type": "input",
"item": "contenttweaker:overworldessencel"
},
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.CreativeTab;
var tiers = ["basic","intermediate","advanced","elite","insane","ultimate","ludicrous","divine"] as string[];
var tings = ["piston","conveyor","motor","sensor","emitter","robotarm","valve"] as string[];
for tier in tiers {
for ting in tings {
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Block;
import mods.contenttweaker.Item;
var zsBlockf = VanillaFactory.createBlock("portalBlockf", <blockmaterial:rock>);
zsBlockf.blockSoundType = <soundtype:metal>;
zsBlockf.register();
var zsBlockj = VanillaFactory.createBlock("portalBlockt", <blockmaterial:rock>);
@KAfable
KAfable / CustomTiersCTT
Created December 6, 2017 19:10
Has the sulfur blocks on bottom
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.MaterialPart;
import mods.contenttweaker.MaterialSystem;
import mods.contenttweaker.Material;
import mods.contenttweaker.Item;
import mods.contenttweaker.Block;
var partTypeFoil = MaterialSystem.getPartBuilder().setName("Foil").setPartType(MaterialSystem.getPartType("item"));
{
"materialMappings": {
"reinforced_stone_casing": 49,
"reinforced_stone_plate": 30,
"tin_beam": 190,
"glass-_slime_composite_molten": 2,
"copper_dense_plate": 156,
"fiery_infused_casing": 51,
"sulfur_ore": 136,
"wood_dense_plate": 181,
{
"materialMappings": {
"reinforced_stone_casing": 49,
"reinforced_stone_plate": 30,
"tin_beam": 190,
"glass-_slime_composite_molten": 2,
"copper_dense_plate": 156,
"fiery_infused_casing": 51,
"sulfur_ore": 136,
"wood_dense_plate": 181,
{
"savedSubBlockNames": {
"0": {
"1": "reinforced_stone_block",
"7": "sulfur_ore_minecraft_stone",
"10": "sulfur_ore_minecraft_netherrack"
}
}
}