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

QuestObjectiveDeliver() public method

public QuestObjectiveDeliver ( int itemId, int amount, string npcName ) : System.Linq
itemId int
amount int
npcName string
return System.Linq
		public QuestObjectiveDeliver(int itemId, int amount, string npcName)
			: base(amount)
		{
			this.ItemId = itemId;
			this.NpcName = npcName;

			this.MetaData.SetString("TARGECHAR", this.NpcName);
			this.MetaData.SetInt("TARGETCOUNT", this.Amount);
			this.MetaData.SetInt("TARGETITEM", this.ItemId);
		}
	}
QuestObjectiveDeliver