My closet meat

From Kolmafia
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Function Syntax

int my_closet_meat()

Returns the amount of meat stored in your Colossal Closet.

Code Sample

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

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

See Also

my_meat() | my_storage_meat() | print()