Eat: Difference between revisions
Jump to navigation
Jump to search
imported>Heeheehee mNo edit summary |
imported>Bale mNo edit summary |
||
Line 5: | Line 5: | ||
FunctionPage| | FunctionPage| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 33: | Line 32: | ||
cli_equiv=The CLI command "eat" works similarly.| | cli_equiv=The CLI command "eat" works similarly.| | ||
}} | }} | ||
[[Category:Item Management]] |
Revision as of 22:05, 21 May 2010
Function Syntax
boolean eat(int qty ,item consume )
- qty is the quantity to eat
- consume is the item to eat
Will attempt to eat qty amount of item consume. Returns true for food items and false for items that are not. (The return value does not reflect whether or not the items were actually consumed.) Using this command without Got Milk active, when you are currently capable of acquiring said effect, will issue a warning dialog about eating without Got Milk active.
Code Sample
Eat maximum amount of olive lo meins.
int amount = (fullness_limit() - my_fullness()) / 3;
eat(amount, $item[olive lo mein]);
CLI Equivalent
The CLI command "eat" works similarly.