RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Necro/Arcane Fix

Pont

Knight
Necro/Arcane Fix

Hi,

This is the patch fix to make Necro regs work with Arcane clothing as it should, not sure where to post this 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; } }
 
Top