Difference between revisions of "Display amount"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(added code sample)
imported>Bale
m
 
Line 5: Line 5:
 
FunctionPage|
 
FunctionPage|
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=Item Management|
 
  
 
function1={{Function|
 
function1={{Function|
Line 37: Line 36:
 
see_also={{SeeAlso|closet_amount|equipped_amount|item_amount|shop_amount|stash_amount|storage_amount}}|
 
see_also={{SeeAlso|closet_amount|equipped_amount|item_amount|shop_amount|stash_amount|storage_amount}}|
 
}}
 
}}
 +
 +
[[Category:Item Management]]

Latest revision as of 21:46, 21 May 2010

Function Syntax

int display_amount(item it )

  • it is the item to check

Returns the amount of a given item that is contained in your display case.

Code Sample

Reports on the amount of all Disco Bandit drinks in your display case.

void report_drink(item drink) {
	if(display_amount(drink) > 0)
		print("In your DC are "+ display_amount(drink) +" "+ drink.to_plural());
}

foreach drink in get_related($item[tangarita], "zap")
	report_drink(drink);
foreach drink in get_related($item[fuzzbump], "zap")
	report_drink(drink);

See Also

closet_amount() | equipped_amount() | item_amount() | shop_amount() | stash_amount() | storage_amount()