本文整理匯總了C#中wServer.realm.Entity.Dist方法的典型用法代碼示例。如果您正苦於以下問題:C# Entity.Dist方法的具體用法?C# Entity.Dist怎麽用?C# Entity.Dist使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類wServer.realm.Entity
的用法示例。
在下文中一共展示了Entity.Dist方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TickCore
protected override void TickCore(Entity host, RealmTime time, ref object state)
{
if (checkForStates && !states.ToList().Contains(host.CurrentState.Name)) return;
if (state != null && cooldown.CoolDown == 0) return; //cooldown = 0 -> once per state entry
int c;
if (state == null) c = cooldown.Next(Random);
else c = (int)state;
c -= time.thisTickTimes;
state = c;
if (c > 0) return;
c = cooldown.Next(Random);
state = c;
if (Random.NextDouble() >= probability) return;
string taunt = text.Length == 1 ? text[0] : text[Random.Next(text.Length)];
if (taunt.Contains("{PLAYER}"))
{
Entity player = host.GetNearestEntity(10, null);
if (player == null) return;
taunt = taunt.Replace("{PLAYER}", player.Name);
}
taunt = taunt.Replace("{HP}", (host as Enemy).HP.ToString());
TextPacket packet = new TextPacket
{
Name = "#" + (host.ObjectDesc.DisplayId ?? host.ObjectDesc.ObjectId),
ObjectId = host.Id,
Stars = -1,
BubbleTime = 5,
Recipient = "",
Text = taunt,
CleanText = ""
};
if (broadcast)
host.Owner.BroadcastPacket(packet, null);
else
foreach (Player i in host.Owner.PlayersCollision.HitTest(host.X, host.Y, 15).OfType<Player>())
if (host.Dist(i) < 15)
i.Client.SendPacket(packet);
}