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 Run Uo Bug Fix

Pont

Knight
Necro/arcane Run Uo Bug Fix

Hi,

This is the patch fix for necro regs to work with arcane clothing as they should do, not sure where this should be posted:

--- 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