Skip to content

Instantly share code, notes, and snippets.

View BlueAgent's full-sized avatar
Wonderful Wishes~

BlueAgent

Wonderful Wishes~
View GitHub Profile
@BlueAgent
BlueAgent / friend_hs_err_pid14208.log
Created January 9, 2020 07:19
Friend's Minecraft won't load with Forge? Reaches main menu without for loaded. My latest log with just forge installed is provided for reference.
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000032ab0000, pid=14208, tid=0x0000000000002af0
#
# JRE version: Java(TM) SE Runtime Environment (8.0_231-b11) (build 1.8.0_231-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.231-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C 0x0000000032ab0000
#
@BlueAgent
BlueAgent / crafttweaker.log
Created April 29, 2018 12:55
MrCrayfish's Furniture Mod CraftTweaker log
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Building registry
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Successfully built item registry
[INITIALIZATION][CLIENT][INFO] Loading scripts
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: test.zs}
[INITIALIZATION][CLIENT][INFO] Completed script loading in: 644ms
[POSTINITIALIZATION][CLIENT][INFO] Applying MrCrayfish's Furniture Mod changes...
[POSTINITIALIZATION][CLIENT][INFO] Add trade input-item=minecraft:stick,input-amount=42,input-metadata=0,payment-item=minecraft:diamond,output-item-metadata=0,payment-price=13 to MineBay
[POSTINITIALIZATION][CLIENT][INFO] MineBay: Added trade input-item=minecraft:stick,input-amount=42,input-metadata=0,payment-item=minecraft:diamond,output-item-metadata=0,payment-price=13
[POSTINITIALIZATION][CLIENT][INFO] Add trade input-item=minecraft:apple,input-amount=16,input-metadata=0,payment-item=minecraft:emerald,output-item-metadata=0,payment-price=3 to MineBay
[POSTINITIALIZATION][CL
@BlueAgent
BlueAgent / crayfish.zs
Last active November 8, 2018 17:16
MrCrayfish's Furniture Mod CraftTweaker sample
// MineBay
mods.cfm.MineBay.addTrade(<minecraft:stick>.withAmount(42),<minecraft:diamond>.withAmount(13));
mods.cfm.MineBay.addTrade(<minecraft:apple>.withAmount(16),<minecraft:emerald>.withAmount(3));
mods.cfm.MineBay.addTrade(<minecraft:carrot>,<minecraft:emerald>);
mods.cfm.MineBay.remove(<minecraft:potion>.withTag({Potion: "night_vision"}));
// Oven
mods.cfm.Oven.addRecipe(<minecraft:apple>.withAmount(2),<minecraft:stick>);
mods.cfm.Oven.remove(<cfm:item_flesh_cooked>);
mods.cfm.Oven.remove(null,<minecraft:potato>);