當前位置: 首頁>>代碼示例>>C#>>正文


C# NPC.CanInteractWith方法代碼示例

本文整理匯總了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;
		}
開發者ID:Skizot,項目名稱:WCell,代碼行數:14,代碼來源:Character.cs

示例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;
		}
開發者ID:pallmall,項目名稱:WCell,代碼行數:40,代碼來源:TaxiMgr.cs

示例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;
		}
開發者ID:ray2006,項目名稱:WCell,代碼行數:14,代碼來源:ArmorerMgr.cs


注:本文中的WCell.RealmServer.Entities.NPC.CanInteractWith方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。