Item
Table to work with items.
Item
extands Ability
IsCombinable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is combinable. I'm not sure if non-combinable items even exist.
IsPermanent(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is permanent. I'm not sure what permanent items is, but for items with stacks this function returns false
.
IsStackable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is stackable. e.g tangoes, wards, etc.
IsRecipe(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is recipe.
GetSharability(item: Item
): Enum.ShareAbility
Item
): Enum.ShareAbility
item
Item
Returns item's sharability type.
IsDroppable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is droppable.
IsPurchasable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is purchasable.
IsSellable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item is sellable.
RequiresCharges(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if the item requires charges. e.g. urn, vessel etc.
IsKillable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if item is destroyable by autoatack.
IsDisassemblable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if item is disassemblable.
IsAlertable(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if item is alertable. e.g. smoke, mekansm, arcane boots etc.
GetInitialCharges(item: Item
): integer
Item
): integer
item
Item
Returns initial charges of the item. e.g. 3 for bottle, 1 for dust etc.
CastsOnPickup(item: Item
): boolean
Item
): boolean
item
Item
No idea what this function does.
GetCurrentCharges(item: Item
): integer
Item
): integer
item
Item
Returns amount of current charges.
GetSecondaryCharges(item: Item
): integer
Item
): integer
item
Item
Returns amount of secondary charges. e.g. pack of both type of wards.
IsCombineLocked(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if item locked for combining.
GetPurchaseTime(item: Item
): number
Item
): number
item
Item
Returns the game time when the item was purchased. If the item was assembled from other items, It returns the purchase time of the item that had the lowest index at the moment of assembling.
GetAssembledTime(item: Item
): number
Item
): number
item
Item
Returns the game time when the item was assembled. If the item was not assembled, returns time when the item was purchased.
PurchasedWhileDead(item: Item
): boolean
Item
): boolean
item
Item
Returns true
if item was purchased while dead.
CanBeUsedOutOfInventory(item: Item
): boolean
Item
): boolean
item
Item
No idea which specific item example could be used out of inventory.
IsItemEnabled(item: Item
): boolean
Item
): boolean
item
Item
Returns false
if item has CD after moving from stash.
GetEnableTime(item: Item
): number
Item
): number
item
Item
Returns game time when item will be enabled.
GetPlayerOwnerID(item: Item
): integer
Item
): integer
item
Item
Returns player ID who owns the item.
GetCost(item: Item
): integer
Item
): integer
item
Item
Returns item cost.
GetStockCount(item_id: integer
): integer
integer
): integer
item_id
integer
Returns amount of remaining items in shop by item id.
Example
Last updated