Laureline's Wiki

Laureline's Wiki

Minecraft Server

This is an old revision of the document!


Minecraft Server

Extra Configurations

File Name: scripts/03_fixes.zs

val marble = <ore:stoneMarble>;
marble.add(<gregtech:mineral:0>);
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>],
]);

File Name: scripts/04_tweaks.zs

// Rubber ingot from Rubber
furnace.addRecipe(<gregtech:meta_item_1:10152>*2,<gregtech:meta_item_1:32627>);
 
// 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>]
]);