property_has_default

From Kolmafia
Jump to navigation Jump to search

Function Syntax

boolean property_has_defaultstring name )

Checks if a property has a built-in default value.
  • name: Property name

All properties in data/defaults.txt have a default value.

This function was added in r17892.

Code Samples

Check if a property named autoBuyPriceLimit has a default value, and if so, print it.

if ( property_has_default( "autoBuyPriceLimit" ) )
{
   print( property_default_value( "autoBuyPriceLimit" ) );
}

See Also

get_all_properties() | property_exists() | property_has_default() | property_default_value() | get_property() | set_property() | remove_property() | rename_property()