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

113
Server/QuestArrow.cs Normal file
View File

@@ -0,0 +1,113 @@
#region References
using Server.Network;
#endregion
namespace Server
{
public class QuestArrow
{
private readonly Mobile m_Mobile;
private readonly IPoint3D m_Target;
private bool m_Running;
public Mobile Mobile { get { return m_Mobile; } }
public IPoint3D Target { get { return m_Target; } }
public bool Running { get { return m_Running; } }
public void Update()
{
Update(m_Target.X, m_Target.Y);
}
public void Update(int x, int y)
{
if (!m_Running)
{
return;
}
NetState ns = m_Mobile.NetState;
if (ns == null)
{
return;
}
if (ns.HighSeas)
{
if (m_Target is IEntity)
{
ns.Send(new SetArrowHS(x, y, ((IEntity)m_Target).Serial));
}
else
{
ns.Send(new SetArrowHS(x, y, Serial.MinusOne));
}
}
else
{
ns.Send(new SetArrow(x, y));
}
}
public void Stop()
{
Stop(m_Target.X, m_Target.Y);
}
public void Stop(int x, int y)
{
if (!m_Running)
{
return;
}
m_Mobile.ClearQuestArrow();
NetState ns = m_Mobile.NetState;
if (ns != null)
{
if (ns.HighSeas)
{
if (m_Target is IEntity)
{
ns.Send(new CancelArrowHS(x, y, ((IEntity)m_Target).Serial));
}
else
{
ns.Send(new CancelArrowHS(x, y, Serial.MinusOne));
}
}
else
{
ns.Send(new CancelArrow());
}
}
m_Running = false;
OnStop();
}
public virtual void OnStop()
{ }
public virtual void OnClick(bool rightClick)
{ }
public QuestArrow(Mobile m, IPoint3D t)
{
m_Running = true;
m_Mobile = m;
m_Target = t;
}
public QuestArrow(Mobile m, IPoint3D t, int x, int y)
: this(m, t)
{
Update(x, y);
}
}
}