Difference between revisions of "Combat rate modifier"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
m
imported>Fredg1
m (functionally equivalent to numeric_modifier("Combat Rate"))
 
Line 26: Line 26:
 
   return false;
 
   return false;
 
}
 
}
</syntaxhighlight>
+
</syntaxhighlight>|
}}|
+
 
 +
moreinfo=This is functionally equivalent to doing <code>numeric_modifier("Combat Rate")</code>}}|
  
 
see_also={{SeeAlso|appearance_rates}}|
 
see_also={{SeeAlso|appearance_rates}}|

Latest revision as of 21:46, 3 June 2020

Function Syntax

float combat_rate_modifier()

Returns the current percentage change on combat frequency including equipment and effects.

Code Samples

Checks that your combat frequency modifier is positive (for example, before adventuring in the Purple Light District).

boolean is_combat_positive() {
   if(combat_rate_modifier() > 0) {
      return true;
   }
   return false;
}

This is functionally equivalent to doing numeric_modifier("Combat Rate")

See Also

appearance_rates()

Special

Returns 0.0 when not logged in.