Difference between revisions of "My storage meat"

From Kolmafia
Jump to navigation Jump to search
imported>Darzil
(Created page with "{{ #vardefine:name|my_storage_meat}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function1={{Function| name={{#var:name}}| aggregate={{#var:aggregate}...")
 
(No difference)

Latest revision as of 00:16, 4 December 2013

Function Syntax

int my_storage_meat()

Returns the amount of meat stored in Hangk's.

Code Sample

The following example shows how much meat you have between on-hand, storage & in your closet.

print("You have " + my_meat() + " meat on hand.");
print("You have " + my_closet_meat() + " meat in your closet.");
print("You have " + my_storage_meat() + " meat in storage.");
print("Between the three, you have " + (my_meat() + my_closet_meat() + my_storage_meat()) + " meat altogether.");

See Also

my_meat() | my_closet_meat() | print()