Files
abysmal-isle/Scripts/Regions/MondainRegion.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

37 lines
1.0 KiB
C#

using System;
using System.Xml;
using Server.Spells.Chivalry;
using Server.Spells.Fourth;
using Server.Spells.Seventh;
using Server.Spells.Sixth;
namespace Server.Regions
{
public class MondainRegion : DungeonRegion
{
public MondainRegion(XmlElement xml, Map map, Region parent)
: base(xml, map, parent)
{
}
public override bool OnBeginSpellCast(Mobile m, ISpell s)
{
if (m.IsPlayer())
{
if (s is MarkSpell)
{
m.SendLocalizedMessage(501802); // Thy spell doth not appear to work...
return false;
}
else if (s is GateTravelSpell || s is RecallSpell || s is SacredJourneySpell)
{
m.SendLocalizedMessage(501035); // You cannot teleport from here to the destination.
return false;
}
}
return base.OnBeginSpellCast(m, s);
}
}
}