FindItem
¶
A TLO used to find an item on your character, corpse, or a merchant by partial or exact name match. See examples below.
Forms¶
item FindItem[name|id]
¶
-
Search for an item using the given item id, or partial name match. Will search character inventory and any items stored in key rings (illusion, mount, etc).
Example
Looks for an item with the name swirling in it, and prints the ID.
/echo ${FindItem[swirling].ID}
print(mq.TLO.FindItem("swirling").ID())
item FindItem[=name]
¶
-
Search for an item using exact name match (case insensitive). Will search character inventory and any items stored in key rings (illusion, mount, etc).
Example
Looks for the Cleric Epic (by exact match) and prints its ID.
/echo ${FindItem[=Water Sprinkler of Nem Ankh].ID}
print(mq.TLO.FindItem("=Water Sprinkler of Nem Ankh").ID())