Current hit stat: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang m moved Current hit stat() to Current hit stat: Conformity |
imported>AlbinoRhino mNo edit summary |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{ | |||
#vardefine:name|current_hit_stat}}{{ | |||
#vardefine:return_type|stat}}{{ | |||
FunctionPage| | |||
name={{#var:name}}| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}} | |||
}}| | |||
function_description=Returns the stat (muscle, mysticality or moxie) that is currently being used to calculate hit percentages. This is most likely to be useful in consult ccs scripts, or scripts designed to optimise equipment usage.| | |||
code1={{CodeSample| | |||
title=Code Samples| | |||
description=Checks to ensure your mainstat and hit stat are the same - to make sure you have the right type of weapon equipped. This only applies to muscle and moxie classes, so it checks to make sure you are not a mysticality class first.| | |||
code= | |||
<syntaxhighlight> | |||
if(my_primestat() != $stat[mysticality]) { | |||
if(current_hit_stat() != my_primestat()) { | |||
print("You could probably select a more effective weapon!"); | |||
} | |||
} | |||
</syntaxhighlight> | |||
}}| | |||
see_also={{SeeAlso|my_primestat|buffed_hit_stat}}| | |||
special=When not logged in, this function returns $stat[muscle]. | |||
}} | |||
[[Category:Your Character]] |
Latest revision as of 06:57, 27 December 2017
Function Syntax
stat current_hit_stat()
Returns the stat (muscle, mysticality or moxie) that is currently being used to calculate hit percentages. This is most likely to be useful in consult ccs scripts, or scripts designed to optimise equipment usage.
Code Samples
Checks to ensure your mainstat and hit stat are the same - to make sure you have the right type of weapon equipped. This only applies to muscle and moxie classes, so it checks to make sure you are not a mysticality class first.
if(my_primestat() != $stat[mysticality]) {
if(current_hit_stat() != my_primestat()) {
print("You could probably select a more effective weapon!");
}
}
See Also
Special
When not logged in, this function returns $stat[muscle].