Difference between revisions of "My closet meat"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(test2)
imported>Darzil
 
(3 intermediate revisions by one other user not shown)
Line 5: Line 5:
 
FunctionPage|
 
FunctionPage|
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=Item Management|
 
  
 
function1={{Function|
 
function1={{Function|
Line 26: Line 25:
 
</syntaxhighlight>}}|
 
</syntaxhighlight>}}|
  
see_also={{SeeAlso|my_meat|print}}|
+
see_also={{SeeAlso|my_meat|my_storage_meat|print}}|
 
}}
 
}}
[[Category:Ash Functions|Item Management]]
+
 
 +
[[Category:Item Management]]

Latest revision as of 00:14, 4 December 2013

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()