|
||
|
|||||||
| Serialization This forum is for modifications to the serialization code of RunUO |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Forum Expert
Join Date: Jan 2007
Location: Pontauban, once upon a time
Posts: 2,392
|
Hi,
Here is the bug fix to make necro regs work with arcane clothing as it should do, not sure where to post so: --- NecromancerSpell.cs.orig 2007-05-26 03:12:41.000000000 +0000 +++ NecromancerSpell.cs 2009-04-18 21:40:27.000000000 +0000 @@ -1,5 +1,6 @@ using System; using Server; +using Server.Items; namespace Server.Spells.Necromancy { @@ -8,6 +9,17 @@ namespace Server.Spells.Necromancy public abstract double RequiredSkill{ get; } public abstract int RequiredMana{ get; } + public override bool ConsumeReagents() + { + if( base.ConsumeReagents() ) + return true; + + if( ArcaneGem.ConsumeCharges( Caster, 1 ) ) + return true; + + return false; + } + public override SkillName CastSkill{ get{ return SkillName.Necromancy; } } public override SkillName DamageSkill{ get{ return SkillName.SpiritSpeak; } }
__________________
"The ultimate is not to win, but to reach within the depths of your capabilities and to compete against yourself."
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|