Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,36 @@
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);
}
}
}