Difference between revisions of "Item amount"

From Kolmafia
Jump to navigation Jump to search
imported>Fredg1
m (adding available_amount in See Also)
imported>Fredg1
(adds that it does not include equipped items)
 
Line 15: Line 15:
 
}}|
 
}}|
  
function_description=Returns the amount of an item you currently have in your inventory; does not include items in your Colossal Closet or Hagnk's storage.|
+
function_description=Returns the amount of an item you currently have in your inventory; does not include equipped items (for equipment), items in your Colossal Closet or Hagnk's storage.|
  
 
code1={{CodeSample|
 
code1={{CodeSample|

Latest revision as of 21:21, 24 November 2019

Function Syntax

int item_amount(item it )

  • it is the item to check for.

Returns the amount of an item you currently have in your inventory; does not include equipped items (for equipment), items in your Colossal Closet or Hagnk's storage.

Code Sample

This example function will return the total number of knob goblin firecrackers in your inventory, closet and Hagnk's.

int item_count() {
   item x = $item[knob goblin firecracker];
   int counter = item_amount( x ) + closet_amount( x ) + storage_amount( x );
   return counter;
}

CLI Equivalent

The CLI command "inventory" functions similarly.

See Also

available_amount() | closet_amount() | display_amount() | equipped_amount() | shop_amount() | stash_amount() | storage_amount()

Special

When not logged in, this function returns 0.