Monster level adjustment: Difference between revisions
Jump to navigation
Jump to search
imported>Zarqon mNo edit summary |
imported>Grotfang m moved Monster level adjustment() to Monster level adjustment: Conformity |
(No difference)
|
Revision as of 23:54, 28 February 2010
monster_level_adjustment()
Returns your current +ML, including your mind-control device if applicable.
Example:
# Function that tries to figure out if it's better to use Volley or Brero
# for a certain area's ML (assuming that your volley and 'brero are both 20 lbs.)
boolean better_to_use_brero(int ml_being_tested) {
return ((ml_being_tested + monster_level_adjustment()) >= 85);
}