Current hit stat: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang Conform to template |
imported>Alhifar mNo edit summary |
||
Line 29: | Line 29: | ||
see_also={{SeeAlso|my_primestat}}| | see_also={{SeeAlso|my_primestat}}| | ||
special=When not logged in, this function returns | special=When not logged in, this function returns $stat[muscle]. | ||
}} | }} |
Revision as of 18:15, 1 March 2010
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].