Aura.Channel.Scripting.Scripts.QuestScript.CanMakeProgress C# (CSharp) Метод

CanMakeProgress() приватный Метод

Returns true if creature can make progress on this quest.
Used from objective event handlers, to see if the quest should receive the progress.
private CanMakeProgress ( Creature creature, Aura.Channel.World.Quests.Quest quest ) : bool
creature Aura.Channel.World.Entities.Creature
quest Aura.Channel.World.Quests.Quest
Результат bool
		private bool CanMakeProgress(Creature creature, Quest quest)
		{
			// Party quests can only make progress if they're active
			if (this.IsPartyQuest)
				return (creature.IsInParty && creature.Party.Quest == quest);

			// TODO: Guild quests, outside, delay

			return true;
		}