property_default_value
Jump to navigation
Jump to search
Function Syntax
string property_default_value( string name )
- Returns the default value of a property, or an empty string if a default value does not exist.
- 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" ) );
}