My buffedstat: Difference between revisions
Jump to navigation
Jump to search
imported>Zarqon created page |
imported>Bale mNo edit summary |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | |||
#vardefine:name|my_buffedstat}}{{ | |||
#vardefine:return_type|int}}{{ | |||
FunctionPage| | |||
name={{#var:name}}| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
parameter1={{Param|stat|st}}| | |||
p1desc={{pspan|st}} is 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.| | |||
When not logged in, this function returns 0 regardless of parameter. | 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> | |||
}}| | |||
see_also={{SeeAlso|my_basestat}}| | |||
special=When not logged in, this function returns 0 regardless of parameter. | |||
}} | |||
[[Category:Your Character]] |
Latest revision as of 21:34, 21 May 2010
Function Syntax
- st is 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.