Aura.Channel.World.Entities.Creatures.CreatureQuests.Complete C# (CSharp) Метод

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

Completes all objectives and the quest, if it exists, and removes quest from log. Rewards are taken from group 0, result "Perfect", because the objectives are set done.
public Complete ( Aura.Channel.World.Quests.Quest quest, bool owl ) : bool
quest Aura.Channel.World.Quests.Quest
owl bool Show owl delivering the quest?
Результат bool
		public bool Complete(Quest quest, bool owl)
		{
			if (!this.Has(quest))
				throw new ArgumentException("Quest not found in this manager.");

			quest.CompleteAllObjectives();

			return this.Complete(quest, 0, owl);
		}

Same methods

CreatureQuests::Complete ( Aura.Channel.World.Quests.Quest quest, int rewardGroup, bool owl ) : bool
CreatureQuests::Complete ( int questId, bool owl ) : bool