I'd like to create a list 'most used scripts' for MineTweaker (a mod used to change recipes of items) and other 'must have' files for server admins. But since I don't have the balls or the time, I'll post the thing I judge the most important (after Opis, of course):
A script to REMOVE the BuildCraft Quarry and BuildCraft Pump recipes AND add it to Ender Quarry and Ender Pump.
#Ore Dictionary Removal
#BoP Flesh Block OD entry Removal to prevent exploit with MRF Meat Block crafting into 9 meat ingots
val entry = <ore:blockMeatRaw>;
entry.remove(<BiomesOPlenty:flesh>);
#Recipe Conflicts
recipes.remove(<ComputerCraft:CC-Cable:1>);
recipes.addShaped(<ComputerCraft:CC-Cable:1>, [[<minecraft:stone>, <minecraft:stone>, <minecraft:stone>], [<minecraft:stone>, <minecraft:redstone_block>, <minecraft:stone>], [<minecraft:stone>, <minecraft:stone>, <minecraft:stone>]]);
recipes.remove(<runicdungeons:item.basicBelt>);
recipes.addShaped(<runicdungeons:item.basicBelt>, [[null, <minecraft:leather>, null], [<minecraft:leather>, null, <minecraft:leather>], [<minecraft:gold_ingot>, null, <minecraft:gold_ingot>]]);
recipes.remove(<Botany:trowelIron>);
recipes.remove(<Botany:trowelGold>);
recipes.remove(<Botany:trowelDiamond>);
recipes.remove(<Botany:trowelStone>);
recipes.remove(<Botany:trowelWood>);
recipes.addShaped(<Botany:trowelGold>, [[null, null, <minecraft:gold_ingot>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelDiamond>, [[null, null, <minecraft:diamond>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelStone>, [[null, null, <ore:cobblestone>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelIron>, [[null, null, <minecraft:iron_ingot>], [null, <minecraft:stick>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelWood>, [[null, null, <minecraftlanks>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
#Moddification
#Removes the recipes for BC Quarry and BC Pump
recipes.remove(<BuildCraft|Factory:machineBlock>);
recipes.remove(<BuildCraft|FactoryumpBlock>);
#Put some tooltip for warning!
<BuildCraft|Factory:machineBlock>.addTooltip(format.red(format.italic("Recipe removed! Use the Ender-Quarry!")));
<BuildCraft|FactoryumpBlock>.addTooltip(format.red(format.italic("Recipe removed! Use the Ender Thermic-Pump!>")));
#Add the new recipes for the ExtraUtil's Quarry and Pump
recipes.addShaped(<ExtraUtilities:enderQuarry>, [[<ore:gearIron>,<minecraft:redstone>,<ore:gearIron>],[<ore:gearGold>,<ore:gearIron>,<ore:gearGold>],[<ore:gearDiamond>,<minecraft:diamond_pickaxe> ,<ore:gearDiamond>]]);
recipes.addShaped(<ExtraUtilities:enderThermicPump>, [[<BuildCraft|Factory:tankBlock>,null,null],[<BuildCraft|FactoryumpBlock>,null,null],[null,null,null]]);
A script to REMOVE the BuildCraft Quarry and BuildCraft Pump recipes AND add it to Ender Quarry and Ender Pump.
#Ore Dictionary Removal
#BoP Flesh Block OD entry Removal to prevent exploit with MRF Meat Block crafting into 9 meat ingots
val entry = <ore:blockMeatRaw>;
entry.remove(<BiomesOPlenty:flesh>);
#Recipe Conflicts
recipes.remove(<ComputerCraft:CC-Cable:1>);
recipes.addShaped(<ComputerCraft:CC-Cable:1>, [[<minecraft:stone>, <minecraft:stone>, <minecraft:stone>], [<minecraft:stone>, <minecraft:redstone_block>, <minecraft:stone>], [<minecraft:stone>, <minecraft:stone>, <minecraft:stone>]]);
recipes.remove(<runicdungeons:item.basicBelt>);
recipes.addShaped(<runicdungeons:item.basicBelt>, [[null, <minecraft:leather>, null], [<minecraft:leather>, null, <minecraft:leather>], [<minecraft:gold_ingot>, null, <minecraft:gold_ingot>]]);
recipes.remove(<Botany:trowelIron>);
recipes.remove(<Botany:trowelGold>);
recipes.remove(<Botany:trowelDiamond>);
recipes.remove(<Botany:trowelStone>);
recipes.remove(<Botany:trowelWood>);
recipes.addShaped(<Botany:trowelGold>, [[null, null, <minecraft:gold_ingot>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelDiamond>, [[null, null, <minecraft:diamond>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelStone>, [[null, null, <ore:cobblestone>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelIron>, [[null, null, <minecraft:iron_ingot>], [null, <minecraft:stick>, null], [<ore:stickWood>, null, null]]);
recipes.addShaped(<Botany:trowelWood>, [[null, null, <minecraftlanks>], [null, <ore:stickWood>, null], [<ore:stickWood>, null, null]]);
#Moddification
#Removes the recipes for BC Quarry and BC Pump
recipes.remove(<BuildCraft|Factory:machineBlock>);
recipes.remove(<BuildCraft|FactoryumpBlock>);
#Put some tooltip for warning!
<BuildCraft|Factory:machineBlock>.addTooltip(format.red(format.italic("Recipe removed! Use the Ender-Quarry!")));
<BuildCraft|FactoryumpBlock>.addTooltip(format.red(format.italic("Recipe removed! Use the Ender Thermic-Pump!>")));
#Add the new recipes for the ExtraUtil's Quarry and Pump
recipes.addShaped(<ExtraUtilities:enderQuarry>, [[<ore:gearIron>,<minecraft:redstone>,<ore:gearIron>],[<ore:gearGold>,<ore:gearIron>,<ore:gearGold>],[<ore:gearDiamond>,<minecraft:diamond_pickaxe> ,<ore:gearDiamond>]]);
recipes.addShaped(<ExtraUtilities:enderThermicPump>, [[<BuildCraft|Factory:tankBlock>,null,null],[<BuildCraft|FactoryumpBlock>,null,null],[null,null,null]]);