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

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

Adds empty tab.
public Add ( string tabTitle, Func shouldDisplay = null ) : NpcShopTab
tabTitle string Tab title displayed in-game
shouldDisplay Func Function that determines whether tab should be displayed, set null if not used.
Результат NpcShopTab
		public NpcShopTab Add(string tabTitle, Func<Creature, NPC, bool> shouldDisplay = null)
		{
			return Add(tabTitle, true, shouldDisplay);
		}

Same methods

NpcShopScript::Add ( string tabTitle, bool randomizeColors, Func shouldDisplay = null ) : NpcShopTab
NpcShopScript::Add ( ) : void
NpcShopScript::Add ( string tabTitle, Item item, int price, int stock ) : void
NpcShopScript::Add ( string tabTitle, int itemId, int amount = 1, int price = -1, int stock = -1 ) : void
NpcShopScript::Add ( string tabTitle, int itemId, string metaData, int price = -1, int stock = -1 ) : void
NpcShopScript::Add ( string tabTitle, int itemId, uint color1, uint color2, uint color3, int price = -1, int stock = -1 ) : void