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

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

Creates a new quest script instance.
public QuestScript ( ) : System
Результат System
		public QuestScript()
		{
			this.Prerequisites = new List<QuestPrerequisite>();
			this.Objectives = new OrderedDictionary<string, QuestObjective>();
			this.RewardGroups = new Dictionary<int, QuestRewardGroup>();

			this.MetaData = new MabiDictionary();

			this.Type = QuestType.Normal;
			this.Category = QuestCategory.Basic;
			this.Class = QuestClass.None;
			this.Icon = QuestIcon.Default;

			this.ScrollId = 70024; // Hunting Quest
		}