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,44 @@
using System.Xml;
using Server.Network;
using Server.Spells;
using Server.Spells.Ninjitsu;
namespace Server.Regions
{
public class TwistedWealdDesert : MondainRegion
{
public TwistedWealdDesert(XmlElement xml, Map map, Region parent)
: base(xml, map, parent)
{
}
public static void Initialize()
{
EventSink.Login += new LoginEventHandler(Desert_OnLogin);
}
public override void OnEnter(Mobile m)
{
if (m.NetState != null &&
!TransformationSpellHelper.UnderTransformation(m, typeof(AnimalForm)) &&
m.AccessLevel < AccessLevel.GameMaster)
m.SendSpeedControl(SpeedControlType.WalkSpeed);
}
public override void OnExit(Mobile m)
{
if (m.NetState != null &&
!TransformationSpellHelper.UnderTransformation(m, typeof(AnimalForm)) &&
(Core.SA || !TransformationSpellHelper.UnderTransformation(m, typeof(Server.Spells.Spellweaving.ReaperFormSpell))))
m.SendSpeedControl(SpeedControlType.Disable);
}
private static void Desert_OnLogin(LoginEventArgs e)
{
Mobile m = e.Mobile;
if (m.Region.IsPartOf<TwistedWealdDesert>() && m.AccessLevel < AccessLevel.GameMaster)
m.SendSpeedControl(SpeedControlType.WalkSpeed);
}
}
}