Difference between revisions of "Display amount"

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
m
imported>Bale
(added code sample)
Line 17: Line 17:
  
 
function_description=Returns the amount of a given item that is contained in your display case.|
 
function_description=Returns the amount of a given item that is contained in your display case.|
needscode=yes|
+
 
 +
code1={{CodeSample|
 +
title=Code Sample|
 +
description=Reports on the amount of all Disco Bandit drinks in your display case.|
 +
code=
 +
<syntaxhighlight>
 +
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);
 +
</syntaxhighlight>
 +
}}|
 +
 
 
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}}|
 
}}
 
}}

Revision as of 09:49, 10 March 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()