====== Minecraft Server ====== {{ :games:ftb_revelations.png?nolink&400|}} Modpack: [[https://www.curseforge.com/minecraft/modpacks/ftb-revelation/files/2778969|FTB Revelations]] Extra Mods: * [[https://www.curseforge.com/minecraft/mc-mods/random-things/files/2751591|Random Things]] * [[https://www.curseforge.com/minecraft/mc-mods/mekanism/files/2835175|Mekanism]] * [[https://www.curseforge.com/minecraft/mc-mods/mekanism-generators/files/2835177|Mekanism Generators]] * [[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/armor-stand-configurator/files/2455545|Armor Stand Configurator]] ===== Extra Configurations ===== **File Name:** ''scripts/03_fixes.zs'' val marble = ; marble.add(); marble.add(); val wireCutter = .anyDamage(); recipes.addShaped(, [ [null, , null], [, wireCutter, ], [null, , null], ]); recipes.addShaped(, [ [, , ], [, wireCutter, ], [, , ], ]); recipes.addShaped(, [ [null, , null], [, wireCutter, ], [null, , null], ]); recipes.addShaped(, [ [, , ], [, wireCutter, ], [, , ], ]); recipes.addShaped(, [ [null, , null], [, wireCutter, ], [null, , null], ]); recipes.addShaped(, [ [, , ], [, wireCutter, ], [, , ], ]); **File Name:** ''scripts/04_tweaks.zs'' // Rubber ingot from Rubber furnace.addRecipe(,*2); // Small Cadmium Battery recipes.addShapeless(,[,,]); // Small Sodium Battery recipes.addShapeless(,[,,]); // Small Lithium Battery recipes.addShapeless(,[,,]); // Small battery hull recipes.remove(); recipes.addShaped(, [ [], [], [] ]); //Cables By Hand recipes.removeByRecipeName("gregtech:tin_cable_1"); recipes.removeByRecipeName("gregtech:red_alloy_cable_1"); // Tin Cable recipes.addShapeless(, [,]); // Red Alloy Cable recipes.addShapeless(, [,]); // Copper Cable recipes.addShapeless(, [,]); **File Name:** ''scripts/05_cables.zs'' #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); **File Name:** ''config/mekanism.cfg'' 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 } **File Name:** ''config/gregtech.cfg'' 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 } } **File Name:** ''resources/contenttweaker/lang/en_us.cfg'' //(Optional)// material.conductive_iron=Conductive Iron material.energetic_alloy=Energetic Alloy material.vibrant_alloy=Vibrant Alloy