In mysticality sign: Difference between revisions
Jump to navigation
Jump to search
imported>ZammyWarrior No edit summary |
imported>Zarqon more links, consistent formatting, logged-out info |
||
Line 1: | Line 1: | ||
[[boolean]] [[in_mysticality_sign()]] | |||
Returns ''true'' if your ascension sign is a mysticality sign; otherwise, returns ''false''. | |||
This example farms the logging camp if it's accessible: | |||
<code> | |||
if ([[in_mysticality_sign()]] && [[my_adventures()]] > 0) { | |||
[[adventure()|adventure]]([[my_adventures()]], $[[location]][logging camp]); | |||
} | |||
</code> | |||
[[Category:Your Character | In mysticality sign()]] | [[Category:Your Character | In mysticality sign()]] | ||
[[Category:Ash Functions |In mysticality sign()]] | [[Category:Ash Functions | In mysticality sign()]] | ||
When not logged in, this function returns ''false''. | |||
Revision as of 14:31, 29 January 2009
Returns true if your ascension sign is a mysticality sign; otherwise, returns false.
This example farms the logging camp if it's accessible:
if (in_mysticality_sign() && my_adventures() > 0) {
adventure(my_adventures(), $location[logging camp]);
}
When not logged in, this function returns false.