FindInventory

From ZDoom Wiki
Jump to navigation Jump to search


Note: This feature is for ZScript only.

Actor

clearscope Inventory FindInventory (class<Inventory> itemtype, bool subclass = false) const

Usage

Looks for the specified item class in the calling actor's inventory.

Parameters

  • class<Inventory> itemtype
The inventory item to look for.
  • bool subclass
If true, the function also looks for items which are derived from itemtype, otherwise it only looks for that specific item. Default is false

Return value

If an item is found, the function returns a pointer to that item, otherwise it returns null.

Examples

Nuvolachalk.png Note: This article lists no examples. If you make use of this feature in your own project(s) or know of any basic examples that could be shared, please add them. This will make it easier to understand for future authors seeking assistance. Your contributions are greatly appreciated.