Skip to content

FindItemBankCount

A TLO used to find a count of items in your bank by partial or exact name match. See examples below.

Forms

item FindItemBankCount[name/id]

Counts the items in your bank using the given item id, or partial name match.

Example

Echos the number of items in your bank with the name swirling in it.

/echo ${FindItemBankCount[swirling]}
print(mq.TLO.FindItemBankCount("swirling"))
item FindItemBankCount[=name]

Counts the items in your bank using exact name match (case insensitive).

Example

Echoes the number of Swirling Shadows you have in your bank.

/echo ${FindItemBankCount[=Swirling Shadows]}
print(mq.TLO.FindItemBankCount("=Swirling Shadows"))