Aura.Channel.World.Quests.QuestObjectiveGather.QuestObjectiveGather C# (CSharp) Method

QuestObjectiveGather() public method

public QuestObjectiveGather ( int itemId, int amount ) : System.Linq
itemId int
amount int
return System.Linq
		public QuestObjectiveGather(int itemId, int amount)
			: base(amount)
		{
			this.ItemId = itemId;
			this.MetaData.SetInt("TARGETITEM", this.ItemId);
			//this.MetaData.SetString("TGTSID", "/Gathering_Knife/"); // Tool to use (ignored?)
			this.MetaData.SetInt("TARGETCOUNT", this.Amount);
		}
	}
QuestObjectiveGather