Get ignore zone warnings

From Kolmafia
Jump to navigation Jump to search

Function Syntax

boolean get_ignore_zone_warnings()

Returns the value of the KoL option to disable the "This area might be too tough for you" warnings. If KoL ignores those stat requirement warnings, then this returns true.

Code Samples

If the KOL preference "Ignore Zone Warnings" is disabled (the default) and the character's buffed mainstay is below the location's recommended stat, print a warning.

if( !get_ignore_zone_warnings() && my_buffedstat( my_primestat() ) < my_location().recommended_stat )
   print( "Warning! Your stat is too low!" );

See Also

my_buffedstat() | my_location()