From ad021b05bc938734db3f69cb4e7971f178f00bcd Mon Sep 17 00:00:00 2001 From: xavier Date: Sat, 23 Jul 2011 15:50:12 +0000 Subject: [PATCH] bad merge. repaired. --- Scripts/Engines/Craft/DefInscription.cs | 29 +++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/Scripts/Engines/Craft/DefInscription.cs b/Scripts/Engines/Craft/DefInscription.cs index fe9f383ed..046b9507b 100644 --- a/Scripts/Engines/Craft/DefInscription.cs +++ b/Scripts/Engines/Craft/DefInscription.cs @@ -292,19 +292,40 @@ namespace Server.Engines.Craft AddNecroSpell( 16, 40, 79.6, typeof( ExorcismScroll ), Reagent.NoxCrystal, Reagent.GraveDust ); } + int index; + + if ( Core.ML ) + { + index = AddCraft( typeof( EnchantedSwitch ), 1044294, 1072893, 45.0, 95.0, typeof( BlankScroll ), 1044377, 1, 1044378 ); + AddRes( index, typeof( SpidersSilk ), 1044360, 1, 1044253 ); + AddRes( index, typeof( BlackPearl ), 1044353, 1, 1044253 ); + AddRes( index, typeof( SwitchItem ), 1073464, 1, 1044253 ); + ForceNonExceptional( index ); + SetNeededExpansion( index, Expansion.ML ); + + index = AddCraft( typeof( RunedPrism ), 1044294, 1073465, 45.0, 95.0, typeof( BlankScroll ), 1044377, 1, 1044378 ); + AddRes( index, typeof( SpidersSilk ), 1044360, 1, 1044253 ); + AddRes( index, typeof( BlackPearl ), 1044353, 1, 1044253 ); + AddRes( index, typeof( HollowPrism ), 1072895, 1, 1044253 ); + ForceNonExceptional( index ); + SetNeededExpansion( index, Expansion.ML ); + } + // Runebook - int index = AddCraft( typeof( Runebook ), 1044294, 1041267, 45.0, 95.0, typeof( BlankScroll ), 1044377, 8, 1044378 ); + index = AddCraft( typeof( Runebook ), 1044294, 1041267, 45.0, 95.0, typeof( BlankScroll ), 1044377, 8, 1044378 ); AddRes( index, typeof( RecallScroll ), 1044445, 1, 1044253 ); AddRes( index, typeof( GateTravelScroll ), 1044446, 1, 1044253 ); if ( Core.AOS ) - { AddCraft( typeof( Spellbook ), 1044294, 1023834, 50.0, 126, typeof( BlankScroll ), 1044377, 10, 1044378 ); - - // Bulk order book + { AddCraft( typeof( Engines.BulkOrders.BulkOrderBook ), 1044294, 1028793, 65.0, 115.0, typeof( BlankScroll ), 1044377, 10, 1044378 ); } if ( Core.SE ) + { + AddCraft( typeof( Spellbook ), 1044294, 1023834, 50.0, 126, typeof( BlankScroll ), 1044377, 10, 1044378 ); + } + MarkOption = true; }