本文整理匯總了C#中WCell.RealmServer.Entities.NPC.CanInteractWith方法的典型用法代碼示例。如果您正苦於以下問題:C# NPC.CanInteractWith方法的具體用法?C# NPC.CanInteractWith怎麽用?C# NPC.CanInteractWith使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WCell.RealmServer.Entities.NPC
的用法示例。
在下文中一共展示了NPC.CanInteractWith方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TryBindTo
/// <summary>
/// Tries to bind this Character to the given NPC.
/// </summary>
/// <returns>whether the given NPC is an actual InnKeeper and this char could be bound to that Inn.</returns>
public bool TryBindTo(NPC innKeeper)
{
OnInteract(innKeeper);
if (innKeeper.BindPoint != NamedWorldZoneLocation.Zero && innKeeper.CanInteractWith(this))
{
BindTo(innKeeper);
return true;
}
return false;
}
示例2: TryFly
/// <summary>
/// Sends the given Character on the given Path.
/// </summary>
/// <param name="chr">The Character to fly around.</param>
/// <param name="destinations">An array of destination TaxiNodes.</param>
/// <returns>Whether the client was sent on its way.</returns>
internal static bool TryFly(Character chr, NPC vendor, PathNode[] destinations)
{
var client = chr.Client;
if (vendor == null && chr.Role.IsStaff)
{
var dest = destinations.LastOrDefault();
if (dest != null)
{
chr.TeleportTo(dest);
return true;
}
return false;
}
if (vendor == null || !vendor.CanInteractWith(chr))
{
TaxiHandler.SendActivateTaxiReply(client, TaxiActivateResponse.NotAvailable);
}
else if (PreFlightCheatChecks(client, destinations) &&
PreFlightValidPathCheck(client, destinations) &&
(client.ActiveCharacter.GodMode || PreFlightMoneyCheck(client)))
{
// All good, send an "All Good" reply to the client.
TaxiHandler.SendActivateTaxiReply(client, TaxiActivateResponse.Ok);
// PvP flag is auto-cleared when starting a taxi-flight
chr.UpdatePvPState(false, true);
FlyUnit(chr, true);
return true;
}
return false;
}
示例3: ArmorerCheatChecks
private static bool ArmorerCheatChecks(Character curChar, NPC armorer)
{
if (curChar == null)
return false;
if (armorer == null)
return false;
if (!armorer.CanInteractWith(curChar))
return false;
// Remove Auras not compatible with NPC interaction
curChar.Auras.RemoveByFlag(AuraInterruptFlags.OnStartAttack);
return true;
}