sahisahi
Member
I noticed my mass dispel spell is not removing in area the fieldspells such as firefield,energy,poison,wall of stone, etc, i checked DispelField spell, theres an attribute called DispellableField, was going to try something like :
This is the error im getting
Errors:
+ Spells/Seventh/MassDispel.cs:
CS0030: Line 73: Cannot convert type 'Server.Mobile' to 'Server.Item'
Also tried:
MassDispel.cs:
Code:
foreach (Item item in targets)
{
Type t = item.GetType();
if (!t.IsDefined( typeof( DispellableFieldAttribute ), true ) )
item.Delete();
}
This is the error im getting
Errors:
+ Spells/Seventh/MassDispel.cs:
CS0030: Line 73: Cannot convert type 'Server.Mobile' to 'Server.Item'
Also tried:
Code:
foreach (Mobile m in targets)
{
Type t = item.GetType();
if (Mobile is t)
if (!t.IsDefined( typeof( DispellableFieldAttribute ), true ) )
item.Delete();
Code:
using System.Collections.Generic;
using Server.Items;
using Server.Mobiles;
using Server.Targeting;
using System;
using Server.Misc;
namespace Server.Spells.Seventh
{
public class MassDispelSpell : MagerySpell
{
public override SpellCircle Circle { get { return SpellCircle.Seventh; } }
public override int Sound { get { return 521; } }
private static readonly SpellInfo m_Info = new SpellInfo(
"Mass Dispel", "Vas An Ort",
212,
9002,
Reagent.Garlic,
Reagent.MandrakeRoot,
Reagent.BlackPearl,
Reagent.SulfurousAsh
);
public MassDispelSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
{
}
public override void OnPlayerCast()
{
if (SphereSpellTarget is IPoint3D)
Target((IPoint3D)SphereSpellTarget);
else
DoFizzle();
}
public override void OnCast()
{
Caster.Target = new InternalTarget( this );
}
public void Target( IPoint3D p )
{
if ( !Caster.CanSee( p ) )
{
Caster.SendLocalizedMessage( 500237 ); // Target can not be seen.
}
else if (SphereSpellTarget is BaseWand)
{
BaseWand bw = SphereSpellTarget as BaseWand;
bw.RechargeWand(Caster, this);
}
else if (CheckSequence())
{
SpellHelper.GetSurfaceTop(ref p);
List<Mobile> targets = new List<Mobile>();
Map map = Caster.Map;
if (map != null)
{
IPooledEnumerable eable = map.GetMobilesInRange(new Point3D(p), 8);
foreach (Mobile m in eable)
{
targets.Add(m);
}
eable.Free();
foreach (Item item in targets)
{
Type t = item.GetType();
if (!t.IsDefined( typeof( DispellableFieldAttribute ), true ) )
item.Delete();
}
foreach (Mobile m in targets)
{
if (m is BaseCreature)
Spells.Sixth.DispelSpell.RemoveAllEffects((BaseCreature)m, Caster);
else
Spells.Sixth.DispelSpell.RemoveAllEffects(m, Caster);
}
}
Caster.PlaySound(Sound);
FinishSequence();
}
}
private class InternalTarget : Target
{
private readonly MassDispelSpell m_Owner;
public InternalTarget( MassDispelSpell owner ) : base( 12, true, TargetFlags.None )
{
m_Owner = owner;
}
protected override void OnTarget( Mobile from, object o )
{
IPoint3D p = o as IPoint3D;
if ( p != null )
m_Owner.Target( p );
}
protected override void OnTargetFinish( Mobile from )
{
m_Owner.FinishSequence();
}
}
}
}
Last edited: