Difference between revisions of "My buffedstat"

From Kolmafia
Jump to navigation Jump to search
imported>Zarqon
(created page)
 
imported>Bale
m
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[int]] '''[[my_buffedstat()|my_buffedstat]]( [[stat]] st )'''
+
{{
 +
#vardefine:name|my_buffedstat}}{{
 +
#vardefine:return_type|int}}{{
  
Returns your current buffed value in the specified [[stat]] as an [[int]].
+
FunctionPage|
 +
name={{#var:name}}|
  
This example prints your current buffed stats:
+
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].
 +
}}|
  
<code>
+
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.|
  print("My buffed muscle: " + my_buffedstat($stat[muscle]));
 
  print("My buffed moxie: " + my_buffedstat($stat[moxie]));
 
  print("My buffed muscle: " + my_buffedstat($stat[muscle]));
 
</code>
 
[[Category:Your Character | My buffedstat()]]
 
[[Category:Ash Functions | My buffedstat()]]
 
  
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

int my_buffedstat(stat st )

  • 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

my_basestat()

Special

When not logged in, this function returns 0 regardless of parameter.