Skip to content

Instantly share code, notes, and snippets.

@ubergarm
Last active August 12, 2020 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ubergarm/2fc55c89ca56a492461c16eb7e657122 to your computer and use it in GitHub Desktop.
Save ubergarm/2fc55c89ca56a492461c16eb7e657122 to your computer and use it in GitHub Desktop.
Script for ModTweaker issue report
// THIS SCRIPT DOES NOT WORK AS INTENDED, IT IS FOR AN ISSUE FILED w/ MODTWEAKER!
// Blood Magic Mod
import crafttweaker.data.IData;
import crafttweaker.item.IIngredient;
import crafttweaker.item.IItemStack;
import crafttweaker.item.IItemCondition;
import crafttweaker.oredict.IOreDictEntry;
// Blood Altar
// CraftTweaker Docs: https://docs.blamejared.com/1.12/en/Vanilla/Items/Item_Conditions/
// ModTweaker Docs: https://github.com/CraftTweaker/CraftTweaker-Documentation/tree/master/docs/Mods/Modtweaker/BloodMagic
// ModTweaker Source: https://github.com/jaredlll08/ModTweaker/blob/1.12/src/main/java/com/blamejared/compat/bloodmagic/BloodAltar.java
// mods.bloodmagic.BloodAltar.addRecipe(IItemStack output, IItemStack input, int minimumTier (*minus 1)>, int syphon, int consumeRate, int drainRate);
// Add recipe to fill clay bucket w/ Life Essence in Blood Altar just like vanilla bucket
// <ceramics.clay_bucket>.withEmptyTag() *DOES NOT WORK AS DESIRED* so make a custom item condition:
// conditionedItem = item.only(function(item) {return true;});
//val emptyClayBucket = <ceramics:clay_bucket>.only(function(item) { return item.isEmpty(); });
// fail:
//var emptyClayBucket as IItemStack = <ceramics:clay_bucket>.only(function(item as IItemStack) { return item.tag == null;});
// this simple test "works" but still tries to fill full buckets...
//var emptyClayBucket as IItemStack = <ceramics:clay_bucket>;
// fail error: crafttweaker.api.item.IngredientItem does not implement the requested interface crafttweaker.api.item.IItemStack
//var emptyClayBucket as IItemStack = <ceramics:clay_bucket>.only(function(item as IItemStack) { return true; });
// failed test
//var emptyClayBucket as IItemStack = <ceramics:clay_bucket>.only(function(item as IItemStack) as bool { return true; });
// fail same error
//var emptyClayBucket as IItemStack = <ceramics:clay_bucket>.only(function(item) {return true;});
// throws an error called Truncated class file
//var emptyClayBucket as IItemStack = [<ceramics:clay_bucket>.only(function(item) {return true;})];
// Apparently this is just an IIngredient and not an IItemStack ??
//var emptyClayBucket = <ceramics:clay_bucket>.only(function(item) {return true;});
// this works but still tries to fill full buckets
//var emptyClayBucket = <ceramics:clay_bucket>.only(function(item) {return true;}).items[0];
// this works but still tries to fill full buckets
var emptyClayBucket = <ceramics:clay_bucket>.only(function(item) {return item.tag == null;}).items[0];
mods.bloodmagic.BloodAltar.addRecipe(
<ceramics:clay_bucket>.withTag({fluids: {FluidName: "lifeessence", Amount: 1000}}),
emptyClayBucket,
0,
1000,
5,
0
);
[PREINITIALIZATION][CLIENT][INFO] Current loaders after merging: [[preinit]]
[PREINITIALIZATION][CLIENT][INFO] Loading scripts for loader with names [preinit]
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[4000:contenttweaker]: contenttweaker\fluids.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bettercrates.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\biomesoplenty.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bloodmagic.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bountifulbaubles.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\farmingforblockheads.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\harvestcraft.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\plates.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\projecte.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\simplestoragenetwork.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\vanilla.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] Completed script loading in: 4ms
[PREINITIALIZATION][CLIENT][INFO] Current loaders after merging: [[preinit], [contenttweaker]]
[PREINITIALIZATION][CLIENT][INFO] Loading scripts for loader with names [contenttweaker]
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Loading Script: {[4000:contenttweaker]: contenttweaker\fluids.zs}
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bettercrates.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\biomesoplenty.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bloodmagic.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\bountifulbaubles.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\farmingforblockheads.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\harvestcraft.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\plates.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\projecte.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\simplestoragenetwork.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [contenttweaker | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: crafttweaker\recipes\vanilla.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] Completed script loading in: 118ms
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Building registry
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Successfully built item registry
[INITIALIZATION][CLIENT][INFO] Current loaders after merging: [[preinit], [contenttweaker], [recipeevent | crafttweaker]]
[INITIALIZATION][CLIENT][INFO] Loading scripts for loader with names [crafttweaker | recipeevent]
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Skipping file {[4000:contenttweaker]: contenttweaker\fluids.zs} as we are currently loading with a different loader
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bettercrates.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\biomesoplenty.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bloodmagic.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bountifulbaubles.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\farmingforblockheads.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\harvestcraft.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\plates.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\projecte.zs}
[INITIALIZATION][CLIENT][INFO] Translating item.projectex.arcane_tablet.name to Crafting Transmutation Tablet
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\simplestoragenetwork.zs}
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\vanilla.zs}
[INITIALIZATION][CLIENT][INFO] Completed script loading in: 107ms
[INITIALIZATION][CLIENT][INFO] Translating item.projectex.arcane_tablet.name to Crafting Transmutation Tablet
[POSTINITIALIZATION][CLIENT][INFO] Removing recipes for various outputs
[POSTINITIALIZATION][CLIENT][INFO] Removing recipes matching: bettercrates
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "farmingforblockheads:market"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "harvestcraft:market"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "harvestcraft:shippingbin"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "ceramics:armor/unfired_clay_plate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "bewitchment:compat/cold_iron_plate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "bewitchment:compat/silver_plate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "thaumcraft:brassplate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "thaumcraft:ironplate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "thaumcraft:thaumiumplate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "thaumcraft:voidplate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:item.pe_matter_0"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:philosophers_stone_alt"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:philosophers_stone"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:knowledge_sharing_book"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:energy_link"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:personal_link"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:refined_link"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:compressed_refined_link"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:item.pe_repair_talisman"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:transmutation_table"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projecte:item.pe_transmutation_tablet"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "projectex:arcane_tablet"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "storagenetwork:remote3"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "storagenetwork:remote2"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "storagenetwork:remote1"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "minecraft:trapdoor"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "minecraft:diamond_helmet"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "minecraft:diamond_chestplate"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "minecraft:diamond_leggings"
[POSTINITIALIZATION][CLIENT][INFO] Removing recipe with name "minecraft:diamond_boots"
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Wooden crate with name bettercrates_wooden_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Copper crate with name bettercrates_copper_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Iron crate with name bettercrates_iron_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Golden crate with name bettercrates_golden_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond crate with name bettercrates_diamond_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Obsidian crate with name bettercrates_obsidian_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Wooden upgrade with name bettercrates_up_wooden_crate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Copper upgrade with name bettercrates_up_copper
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Iron upgrade with name bettercrates_up_iron
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Iron/Golden upgrade with name bettercrates_up_golden
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Copper/Golden upgrade with name bettercrates_up_golden2
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond upgrade with name bettercrates_up_diamond
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Obsidian upgrade with name bettercrates_up_obsidian
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Vines with name minecraft_vine
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Market with name farmingforblockheads_market
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Market with name harvestcraft_market
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Shipping Bin with name harvestcraft_shippingbin
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Unfired Clay Plate with name ceramics_armor/unfired_clay_plate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Cold Iron Plate with name bewitchment_compat/cold_iron_plate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Silver Plate with name bewitchment_compat/silver_plate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Brass Plate with name thaumcraft_brassplate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Iron Plate with name thaumcraft_ironplate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Thaumium Plate with name thaumcraft_thaumiumplate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Void Metal Plate with name thaumcraft_voidplate
[POSTINITIALIZATION][CLIENT][INFO] Adding shapeless recipe for Dark Matter with name projecte_conversions/aeternalis_fuel_to_dark_matter
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Philosopher's Stone with name projecte_philosophers_stone
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Knowledge Sharing Book with name projectex_knowledge_sharing_book
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Basic Energy EMC Link with name projectex_energy_link
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Personal EMC Link with name projectex_personal_link
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Refined EMC Link with name projectex_refined_link
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Compressed Refined EMC Link with name projectex_compressed_refined_link
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Repair Talisman with name projecte_item.pe_repair_talisman
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Transmutation Table with name projecte_transmutation_table
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Transmutation Tablet with name projecte_item.pe_transmutation_tablet
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Crafting Transmutation Tablet with name projectex_arcane_tablet
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Simple Storage Remote with name storagenetwork_remote3
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Upgraded Storage Remote with name storagenetwork_remote2
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Advanced Storage Remote with name storagenetwork_remote1
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Wooden Trapdoor with name minecraft_trapdoor
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond Helmet with name minecraft_diamond_helmet
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond Chestplate with name minecraft_diamond_chestplate
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond Leggings with name minecraft_diamond_leggings
[POSTINITIALIZATION][CLIENT][INFO] Adding shaped recipe for Diamond Boots with name minecraft_diamond_boots
[POSTINITIALIZATION][CLIENT][INFO] Adding Melter recipe: teamroots.embers.recipe.ItemMeltingRecipe@6cc2fb75
[POSTINITIALIZATION][CLIENT][INFO] Adding Melter recipe: teamroots.embers.recipe.ItemMeltingRecipe@30a3e5c7
[POSTINITIALIZATION][CLIENT][INFO] Adding Melter recipe: teamroots.embers.recipe.ItemMeltingRecipe@233e61fb
[POSTINITIALIZATION][CLIENT][INFO] Adding Stamper recipe: teamroots.embers.recipe.ItemStampingRecipe@3d3780f5
[POSTINITIALIZATION][CLIENT][INFO] Adding Stamper recipe: teamroots.embers.recipe.ItemStampingRecipe@4655dd75
[AVAILABLE][CLIENT][INFO] Fixed the RecipeBook
[AVAILABLE][CLIENT][INFO] Adding Blood Altar recipe for: 1xitem.ceramics.clay_bucket@0 from: net.minecraft.item.crafting.Ingredient@fbadc2 minTier: 0, syphon: 1000, consumeRate: 5, drainRate: 0
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bettercrates:tin_crate>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bettercrates:up_tin>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bettercrates:up_golden3>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bountifulbaubles:ringiron>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bountifulbaubles:ringflywheel>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <bountifulbaubles:ringflywheeladvanced>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_pick>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_axe>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_shovel>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_sword>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_hoe>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_hammer>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_shears>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_armor_3>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_armor_2>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_armor_1>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_dm_armor_0>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_pick>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_axe>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_shovel>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_sword>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_hoe>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_shears>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_hammer>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_katar>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_morning_star>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_armor_3>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_armor_2>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_armor_1>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_rm_armor_0>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_gem_armor_3>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_gem_armor_2>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_gem_armor_1>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_gem_armor_0>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:nova_catalyst>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:nova_cataclysm>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_destruction_catalyst>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_catalitic_lens>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_time_watch>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:item.pe_tome>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projectex:alchemy_table>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:condenser_mk1>
[AVAILABLE][CLIENT][INFO] Hiding item in JEI: <projecte:condenser_mk2>
[SERVER_STARTED][SERVER][INFO] Loading scripts for loader with names [preinit]
[SERVER_STARTED][SERVER][INFO] Completed script loading in: 0ms
[SERVER_STARTED][SERVER][INFO] Loading scripts for loader with names [contenttweaker]
[SERVER_STARTED][SERVER][INFO] [contenttweaker | SIDE_CLIENT]: Loading Script: {[4000:contenttweaker]: contenttweaker\fluids.zs}
[SERVER_STARTED][SERVER][INFO] Completed script loading in: 1ms
[SERVER_STARTED][SERVER][INFO] Loading scripts for loader with names [crafttweaker | recipeevent]
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bettercrates.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\biomesoplenty.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bloodmagic.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\bountifulbaubles.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\farmingforblockheads.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\harvestcraft.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\plates.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\projecte.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\simplestoragenetwork.zs}
[SERVER_STARTED][SERVER][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: crafttweaker\recipes\vanilla.zs}
[SERVER_STARTED][SERVER][INFO] Completed script loading in: 16ms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment