Aura.Channel.Scripting.Scripts.NpcScript.DoingPtj C# (CSharp) Метод

DoingPtj() публичный Метод

Returns true if a PTJ quest is active and its type matches the given one.
public DoingPtj ( PtjType type ) : bool
type PtjType
Результат bool
		public bool DoingPtj(PtjType type)
		{
			var quest = this.Player.Quests.GetPtjQuest();
			return (quest != null && quest.Data.PtjType == type);
		}

Same methods

NpcScript::DoingPtj ( ) : bool