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

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

Adds quest scroll item to tab.
public AddQuest ( string tabTitle, int questId, int price, int stock = -1 ) : void
tabTitle string
questId int
price int
stock int Amount of times item can be bough, unlimited if lower than 0 (default).
Результат void
		public void AddQuest(string tabTitle, int questId, int price, int stock = -1)
		{
			var item = Item.CreateQuestScroll(questId);

			this.Add(tabTitle, item, price, stock);
		}