Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
36
Server/Targeting/StaticTarget.cs
Normal file
36
Server/Targeting/StaticTarget.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
namespace Server.Targeting
|
||||
{
|
||||
public class StaticTarget : IPoint3D
|
||||
{
|
||||
private Point3D m_Location;
|
||||
private readonly int m_ItemID;
|
||||
|
||||
public StaticTarget(Point3D location, int itemID)
|
||||
{
|
||||
m_Location = location;
|
||||
m_ItemID = itemID & TileData.MaxItemValue;
|
||||
m_Location.Z += TileData.ItemTable[m_ItemID].CalcHeight;
|
||||
}
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public Point3D Location { get { return m_Location; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public string Name { get { return TileData.ItemTable[m_ItemID].Name; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public TileFlag Flags { get { return TileData.ItemTable[m_ItemID].Flags; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int X { get { return m_Location.X; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Y { get { return m_Location.Y; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int Z { get { return m_Location.Z; } }
|
||||
|
||||
[CommandProperty(AccessLevel.Counselor)]
|
||||
public int ItemID { get { return m_ItemID; } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user