My meat: Difference between revisions
Jump to navigation
Jump to search
imported>Metraxis |
imported>Zarqon another example, more links, consistent formatting, categories |
||
Line 1: | Line 1: | ||
[[int]] [[my_meat()]] | |||
Returns the amount of meat you currently have in your inventory. This does not include meat you have in | |||
Returns the amount of meat you currently have in your inventory. This does not include meat you have in your Colossal Closet or Hagnk's storage. | |||
The following sample checks to see if you have enough meat to buy a hermit permit and if you do, it will buy one. | |||
The following sample checks to see if you have enough meat to buy a hermit | |||
<code> | <code> | ||
if ([[my_meat()]] >= 100) { | |||
[[buy()|buy]](1, $[[item]][hermit permit]); | |||
} | |||
buy(1, $item[hermit permit]); | </code> | ||
</code> | More complicated example: this makes sure you have enough meat before trying to get a dead mimic: | ||
<code> | <code> | ||
while ([[my_meat()]] < 5000) { | |||
[[adventure()|adventure]](1,$[[location]][knob goblin treasury]); | |||
[[cli_execute()|cli_execute]]("sell * meat stack"); | |||
} | } | ||
[[cli_execute()|cli_execute]]("conditions clear; conditions add 1 dead mimic"); | |||
if ([[adventure()|adventure]]([[my_adventures()]],$[[location]][dungeons of doom])) | |||
[[print()|print]]("You didn't get a mimic!"); | |||
</code> | </code> | ||
[[Category:Your Character | My meat()]] | |||
[[Category:Ash Functions | My meat()]] | |||
When not logged in, this function returns 0. | |||
< | <center><table style="width:80%;margin-top:+.7em;background-color:#F4DF3B;border:2px solid #8663A8"><tr> | ||
<table style="width:80%;margin-top:+.7em;background-color:#F4DF3B;border:2px solid #8663A8"> | |||
<td class="box_tgen" style="text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;"> | <td class="box_tgen" style="text-align:center;color:#000;font-size:90%;border:none;margin: 0;padding:.1em;"> | ||
'''See Also:''' <br> [[my_closetmeat]] || [[item_amount]]</td> | '''See Also:''' <br> [[my_closetmeat()]] || [[item_amount()]]</td> | ||
</tr></table></center> | |||
</table> | |||
</ |
Revision as of 08:02, 30 January 2009
Returns the amount of meat you currently have in your inventory. This does not include meat you have in your Colossal Closet or Hagnk's storage.
The following sample checks to see if you have enough meat to buy a hermit permit and if you do, it will buy one.
if (my_meat() >= 100) {
buy(1, $item[hermit permit]);
}
More complicated example: this makes sure you have enough meat before trying to get a dead mimic:
while (my_meat() < 5000) {
adventure(1,$location[knob goblin treasury]);
cli_execute("sell * meat stack");
}
cli_execute("conditions clear; conditions add 1 dead mimic");
if (adventure(my_adventures(),$location[dungeons of doom]))
print("You didn't get a mimic!");
When not logged in, this function returns 0.
See Also: my_closetmeat() || item_amount() |