My buffedstat: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang m moved My buffedstat() to My buffedstat: Conformity |
imported>Grotfang Conform to template |
||
Line 1: | Line 1: | ||
{{#vardefine:name|my_buffedstat}} | |||
{{#vardefine:return_type|int}} | |||
{{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}}| | |||
parameter1={{Param|stat|st}}| | |||
p1desc=Enter the stat you wish to return the buffed value of in the form of $stat[stat]. | |||
}}| | |||
function_description=Returns your current buffed value in the specified stat as an int. Passing $stat[submuscle], $stat[submysticality], or $stat[submoxie] to this function will always return 0.| | |||
< | code1={{CodeSample| | ||
title=Code Samples| | |||
description=This example prints your current buffed stats.| | |||
code= | |||
</ | <syntaxhighlight> | ||
print("My buffed muscle: " + my_buffedstat($stat[muscle])); | |||
print("My buffed mysticality: " + my_buffedstat($stat[mysticality])); | |||
print("My buffed moxie: " + my_buffedstat($stat[moxie])); | |||
</syntaxhighlight> | |||
}}| | |||
When not logged in, this function returns 0 regardless of parameter. | see_also={{SeeAlso|my_basestat}}| | ||
special=When not logged in, this function returns 0 regardless of parameter. | |||
}} |
Revision as of 13:00, 1 March 2010
Function Syntax
- Enter the stat you wish to return the buffed value of in the form of $stat[stat].
Returns your current buffed value in the specified stat as an int. Passing $stat[submuscle], $stat[submysticality], or $stat[submoxie] to this function will always return 0.
Code Samples
This example prints your current buffed stats.
print("My buffed muscle: " + my_buffedstat($stat[muscle]));
print("My buffed mysticality: " + my_buffedstat($stat[mysticality]));
print("My buffed moxie: " + my_buffedstat($stat[moxie]));
See Also
Special
When not logged in, this function returns 0 regardless of parameter.