Skip to content

Instantly share code, notes, and snippets.

View tancop's full-sized avatar

Teodor Potancok tancop

View GitHub Profile
@tancop
tancop / 2019-06-25-1.log
Created June 25, 2019 13:45
SkyFactory 4 client log
This file has been truncated, but you can view the full file.
[14:07:27] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[14:07:27] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[14:07:27] [main/INFO]: Forge Mod Loader version 14.23.5.2838 for Minecraft 1.12.2 loading
[14:07:27] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 10:amd64:10.0, installed at C:\Users\tegomatu\Documents\Curse\Minecraft\Install\runtime\jre-x64
[14:07:36] [main/INFO]: Searching C:\Users\tegomatu\Documents\Curse\Minecraft\Instances\SkyFactory 4\mods for mods
[14:07:36] [main/INFO]: Searching C:\Users\tegomatu\Documents\Curse\Minecraft\Instances\SkyFactory 4\mods\1.12.2 for mods
[14:07:36] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in Apotheosis-1.12.2-1.10.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[14:07:36] [main/WARN]: The coremod ApotheosisCore (shadows.ApotheosisCore) is not signed!
[14:07:36] [main/WARN]: Found F
@tancop
tancop / 0items.zs
Created July 12, 2019 10:41
items zenscript
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Item;
import mods.contenttweaker.IItemGetContainerItem;
var brokenGrindstone = VanillaFactory.createItem("broken_grindstone");
brokenGrindstone.setMaxStackSize(1);
brokenGrindstone.register();
@tancop
tancop / crafttweaker.log
Created July 15, 2019 11:53
NullPointerException
[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 {[0:contenttweaker]: 0items.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:contenttweaker]: 1blocks.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: 2crafting.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: {[0:contenttweaker]: 0items.zs}
[PREINITIALIZATION][CLIENT]
@tancop
tancop / 0items.zs
Created July 16, 2019 10:40
Items script for kindlich
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Item;
import mods.contenttweaker.IItemGetContainerItem;
var brokenGrindstone = VanillaFactory.createItem("broken_grindstone");
brokenGrindstone.setMaxStackSize(1);
brokenGrindstone.register();
[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 {[0:contenttweaker]: 0items.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:contenttweaker]: 1blocks.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: 2crafting.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] Completed script loading in: 2ms
[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: {[0:contenttweaker]: 0items.zs}
[PREINITIALIZATION][CLIENT]
@tancop
tancop / crafttweaker.log
Created July 18, 2019 08:53
Without ";"
[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 {[0:contenttweaker]: 0items.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:contenttweaker]: 1blocks.zs} as we are currently loading with a different loader
[PREINITIALIZATION][CLIENT][INFO] [preinit | SIDE_CLIENT]: Skipping file {[0:crafttweaker]: 2crafting.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: {[0:contenttweaker]: 0items.zs}
[PREINITIALIZATION][CLIENT]
@tancop
tancop / 0items.zs
Created July 18, 2019 09:15
Script
#loader contenttweaker
import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Item;
import mods.contenttweaker.IItemGetContainerItem;
var brokenGrindstone = VanillaFactory.createItem("broken_grindstone");
brokenGrindstone.setMaxStackSize(1);
brokenGrindstone.register();
{
"forge_marker": 1,
"defaults": {
"textures": {
"texture": "contenttweaker:blocks/stone_pedestal",
"particle": "contenttweaker:blocks/stone_pedestal"
},
"model": "contenttweaker:stone_pedestal",
"uvlock": true,
"transform": "forge:default-block"
var stone_pedestal = VanillaFactory.createBlock("stone_pedestal", <blockmaterial:rock>);
stone_pedestal.fullBlock = false;
stone_pedestal.blockResistance = 30 as float;
stone_pedestal.blockSoundType = <soundtype:stone>;
stone_pedestal.axisAlignedBB = AxisAlignedBB.create(0.125d, 0.0d, 0.125d, 0.875d, 1.0d, 0.875d);
stone_pedestal.register();
@tancop
tancop / godot.out
Created June 27, 2022 12:01
Crash in official alpha10
❯ ../../../bin/Godot_v4.0-alpha10_linux.64
ERROR: Index p_type_b = 1752697600 is out of bounds (Variant::VARIANT_MAX = 35).
at: get_ptr_operator_evaluator (core/variant/variant_op.cpp:919)
ERROR: Index p_type_b = 81704528 is out of bounds (Variant::VARIANT_MAX = 35).
at: get_ptr_operator_evaluator (core/variant/variant_op.cpp:919)
ERROR: Index p_type_b = 81704528 is out of bounds (Variant::VARIANT_MAX = 35).
at: get_ptr_operator_evaluator (core/variant/variant_op.cpp:919)
ERROR: Index p_type_b = 81704528 is out of bounds (Variant::VARIANT_MAX = 35).
at: get_ptr_operator_evaluator (core/variant/variant_op.cpp:919)
ERROR: Condition "!method" is true. Returning: 0