Laureline's Wiki

Laureline's Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
games:minecraft [2020/02/05 22:22] Laureline Davidgames:minecraft [2020/03/07 18:34] (current) Laureline David
Line 13: Line 13:
   * [[https://www.curseforge.com/minecraft/mc-mods/gregtechce/files/2811836|GregTech CE]]   * [[https://www.curseforge.com/minecraft/mc-mods/gregtechce/files/2811836|GregTech CE]]
   * [[https://www.curseforge.com/minecraft/mc-mods/ceu/files/2810538|CEU]]   * [[https://www.curseforge.com/minecraft/mc-mods/ceu/files/2810538|CEU]]
 +  * [[https://www.curseforge.com/minecraft/mc-mods/armor-stand-configurator/files/2455545|Armor Stand Configurator]]
  
 ===== Extra Configurations ===== ===== Extra Configurations =====
  
-''scripts/03_fixes.zs'' +**File Name:** ''scripts/03_fixes.zs''
-<code javascript [enable_line_numbers="true"]> +
-recipes.removeShapeless(<ic2:cable:*>, [<ic2:forge_hammer>]); +
- +
-recipes.addShapeless(<ic2:cable:4> * 3, [<ic2:forge_hammer>, <ore:ingotTin>]); +
-recipes.addShapeless(<ic2:cable:2> * 4, [<ic2:forge_hammer>, <ore:ingotGold>]); +
-recipes.addShapeless(<ic2:cable:0> * 2, [<ic2:forge_hammer>, <ore:ingotIron>]);+
  
 +<code javascript>
 val marble = <ore:stoneMarble>; val marble = <ore:stoneMarble>;
 marble.add(<gregtech:mineral:0>); marble.add(<gregtech:mineral:0>);
 marble.add(<gregtech:mineral:4>); marble.add(<gregtech:mineral:4>);
 +
 +val wireCutter = <gregtech:meta_tool:13>.anyDamage();
 +
 +recipes.addShaped(<gregtech:cable:2018>, [
 +    [null,              <ore:plateCopper>, null],
 +    [<ore:plateCopper>, wireCutter,        <ore:plateCopper>],
 +    [null,              <ore:plateCopper>, null],
 +]);
 +
 +recipes.addShaped(<gregtech:cable:3018>, [
 +    [<ore:plateCopper>, <ore:plateCopper>, <ore:plateCopper>],
 +    [<ore:plateCopper>, wireCutter,        <ore:plateCopper>],
 +    [<ore:plateCopper>, <ore:plateCopper>, <ore:plateCopper>],
 +]);
 +
 +recipes.addShaped(<gregtech:cable:2026>, [
 +    [null,            <ore:plateGold>, null],
 +    [<ore:plateGold>, wireCutter,      <ore:plateGold>],
 +    [null,            <ore:plateGold>, null],
 +]);
 +
 +recipes.addShaped(<gregtech:cable:3026>, [
 +    [<ore:plateGold>, <ore:plateGold>, <ore:plateGold>],
 +    [<ore:plateGold>, wireCutter,      <ore:plateGold>],
 +    [<ore:plateGold>, <ore:plateGold>, <ore:plateGold>],
 +]);
 +
 +recipes.addShaped(<gregtech:cable:2071>, [
 +    [null,           <ore:plateTin>, null],
 +    [<ore:plateTin>, wireCutter,     <ore:plateTin>],
 +    [null,           <ore:plateTin>, null],
 +]);
 +
 +recipes.addShaped(<gregtech:cable:3071>, [
 +    [<ore:plateTin>, <ore:plateTin>, <ore:plateTin>],
 +    [<ore:plateTin>, wireCutter,     <ore:plateTin>],
 +    [<ore:plateTin>, <ore:plateTin>, <ore:plateTin>],
 +]);
 </code> </code>
 +
 +
 +**File Name:** ''scripts/04_tweaks.zs''
 +
 +<code javascript>
 +// Rubber ingot from Rubber
 +furnace.addRecipe(<gregtech:meta_item_1:10152>,<gregtech:meta_item_1:32627>*2);
 +
 +// Small Cadmium Battery
 +recipes.addShapeless(<gregtech:meta_item_1:32517>,[<gregtech:meta_item_1:32500>,<gregtech:meta_item_1:2013>,<gregtech:meta_item_1:2013>]);
 + // Small Sodium Battery
 +recipes.addShapeless(<gregtech:meta_item_1:32519>,[<gregtech:meta_item_1:32500>,<gregtech:meta_item_1:2063>,<gregtech:meta_item_1:2063>]);
 +// Small Lithium Battery
 +recipes.addShapeless(<gregtech:meta_item_1:32518>,[<gregtech:meta_item_1:32500>,<gregtech:meta_item_1:2036>,<gregtech:meta_item_1:2036>]); 
 +
 +// Small battery hull
 +recipes.remove(<gregtech:meta_item_1:32500>);
 +recipes.addShaped(<gregtech:meta_item_1:32500>, [
 +    [<ore:cableGtSingleRedAlloy>], [<gregtech:meta_item_1:12071>], [<gregtech:meta_item_1:12071>]
 +]);
 +
 +//Cables By Hand
 +recipes.removeByRecipeName("gregtech:tin_cable_1");
 +recipes.removeByRecipeName("gregtech:red_alloy_cable_1");
 +// Tin Cable
 +recipes.addShapeless(<gregtech:cable:5071>, [<gregtech:cable:71>,<gregtech:meta_item_1:12152>]);
 +// Red Alloy Cable
 +recipes.addShapeless(<gregtech:cable:5237>, [<gregtech:cable:237>,<gregtech:meta_item_1:12152>]);
 +// Copper Cable
 +recipes.addShapeless(<gregtech:cable:5018>, [<gregtech:cable:18>,<gregtech:meta_item_1:12152>]);
 +</code>
 +
 +**File Name:** ''scripts/05_cables.zs''
 +
 +<code javascript>
 +#loader gregtech
 +import mods.gregtech.material.MaterialRegistry;
 +
 +// Cable Materials
 +var materialList = MaterialRegistry.getAllMaterials();
 +
 +val conductiveIron = MaterialRegistry.createIngotMaterial(800, "conductive_iron", 0xf7b29b, "shiny", 2);
 +conductiveIron.addFlags(["GENERATE_PLATE","GENERATE_GEAR"]);
 +
 +val energeticAlloy = MaterialRegistry.createIngotMaterial(801, "energetic_alloy", 0xf49507, "shiny", 2);
 +energeticAlloy.addFlags(["GENERATE_PLATE","GENERATE_GEAR"]);
 +
 +val vibrantAlloy = MaterialRegistry.createIngotMaterial(802, "vibrant_alloy", 0xa4ff70, "shiny", 2);
 +vibrantAlloy.addFlags(["GENERATE_PLATE","GENERATE_GEAR"]);
 +
 +conductiveIron.setCableProperties(32, 1, 0);
 +energeticAlloy.setCableProperties(128, 1, 0);
 +vibrantAlloy.setCableProperties(512, 1, 0);
 +</code>
 +
 +**File Name:** ''config/mekanism.cfg''
 +
 +<code>
 +general {
 +    # Energy multiplier for using silk touch mode with the Digital Miner.
 +    I:MinerSilkMultiplier=4
 +}
 +storage {
 +    # Base energy storage (Joules).
 +    D:DigitalMinerStorage=100000.0
 +}
 +usage {
 +    # Energy per operation tick (Joules).
 +    D:DigitalMinerUsage=250.0
 +}
 +</code>
 +
 +**File Name:** ''config/gregtech.cfg''
 +
 +<code>
 +general {
 +
 +    ##########################################################################################################
 +    # vanillarecipes
 +    #--------------------------------------------------------------------------------------------------------#
 +    # Category that contains configs for changing vanilla recipes
 +    ##########################################################################################################
 +
 +    vanillarecipes {
 +        # Require a knife for bowl crafting instead of only plank? Default is true.
 +        B:bowlRequireKnife=false
 +
 +        # Whether to make iron bucket recipe harder by requiring hammer and plates. Default is true.
 +        B:bucketRequirePlatesAndHammer=false
 +
 +        # Whether to make flint and steel recipe require steel nugget instead of iron one. Default is true
 +        B:flintAndSteelRequireSteel=false
 +
 +        # Recipes for items like iron doors, trapdors, pressure plates, cauldron, hopper and iron bars require iron plates and hammer. Default is true
 +        B:ironConsumingCraftingRecipesRequirePlates=false
 +
 +        # Whether to nerf paper crafting recipe. Default is true.
 +        B:nerfPaperCrafting=false
 +
 +        # Whether to nerf wood crafting to 2 sticks from 2 planks. Default is false.
 +        B:nerfStickCrafting=false
 +
 +        # Whether to nerf wood crafting to 2 planks from 1 log. Default is false.
 +        B:nerfWoodCrafting=false
 +    }
 +
 +}
 +</code>
 +
 +**File Name:** ''resources/contenttweaker/lang/en_us.cfg'' //(Optional)//
 +
 +<code>
 +material.conductive_iron=Conductive Iron
 +material.energetic_alloy=Energetic Alloy
 +material.vibrant_alloy=Vibrant Alloy
 +</code>
 +