In moxie sign: Difference between revisions
Jump to navigation
Jump to search
imported>ZammyWarrior No edit summary |
imported>Zarqon more links, consistent formatting |
||
Line 1: | Line 1: | ||
[[boolean]] [[in_moxie_sign()]] | |||
Returns true if your ascension sign is a moxie sign otherwise false. | Returns ''true'' if your ascension sign is a moxie sign; otherwise, returns ''false''. | ||
This example will adventure in the Thugnderdome if you are able: | |||
if(in_moxie_sign() && my_adventures > 0){ | <code> | ||
adventure(my_adventures(), $location[ | if ([[in_moxie_sign()]] && [[my_adventures()]] > 0) { | ||
}</ | [[adventure()|adventure]]([[my_adventures()]], $[[location]][thugnderdome]); | ||
} | |||
</code> | |||
[[Category:Your Character | In moxie sign()]] | |||
[[Category:Ash Functions | In moxie sign()]] | |||
When not logged in, this function returns ''false''. | |||
Revision as of 14:22, 29 January 2009
Returns true if your ascension sign is a moxie sign; otherwise, returns false.
This example will adventure in the Thugnderdome if you are able:
if (in_moxie_sign() && my_adventures() > 0) {
adventure(my_adventures(), $location[thugnderdome]);
}
When not logged in, this function returns false.