In moxie sign: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang m moved In moxie sign() to In moxie sign |
imported>Grotfang No edit summary |
||
Line 1: | Line 1: | ||
{{#vardefine:name|in_moxie_sign}} | |||
{{#vardefine:return_type|boolean}} | |||
{{FunctionPage| | |||
name={{#var:name}}| | |||
function_category=Your Character| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}} | |||
}}| | |||
function_description=Returns true if your ascension sign is a moxie sign; otherwise, returns false.| | |||
When not logged in, this function returns | code1={{CodeSample| | ||
title=Code Samples| | |||
description=This example will adventure in the Thugnderdome if you are able.| | |||
code= | |||
<syntaxhighlight> | |||
if(in_moxie_sign() && my_adventures() > 0) { | |||
adventure(my_adventures() , $location[thugnderdome]); | |||
} | |||
</syntaxhighlight> | |||
}}| | |||
see_also={{SeeAlso|in_muscle_sign|in_mysticality_sign|my_adventures}}| | |||
special=When not logged in, this function returns false. | |||
}} |
Revision as of 13:53, 1 March 2010
Function Syntax
boolean in_moxie_sign()
Returns true if your ascension sign is a moxie sign; otherwise, returns false.
Code Samples
This example will adventure in the Thugnderdome if you are able.
if(in_moxie_sign() && my_adventures() > 0) {
adventure(my_adventures() , $location[thugnderdome]);
}
See Also
Special
When not logged in, this function returns false.