# ---------------------------------
# --     LicensePlateChanger     --
# --        Version 1.0.0        --
# ---------------------------------

# ------------------
# --   Overview   --
# ------------------
# LicensePlateChanger is a script modification developed by Venoxity Development for changing vehicle license 
# plates in Grand Theft Auto V (GTA V). This documentation provides guidance on configuring 
# the script modification's behavior through the provided TOML file.

# TOML File Format

[BASE]
# ----------------------
# Vehicle Class Configuration
# ----------------------
# Configuration for a specific vehicle class.
# 'NAME' should be replaced with the name of the vehicle class.
[vehicleClass.NAME]
# Specifies whether the LicensePlateChanger is enabled for this vehicle class.
isEnabled = true
# Defines the format for the license plate.
# Use "XXXXXXXX" to ignore plate format and keep it unchanged.
plateFormat = "XXXXXXXX"
# Specifies the type of license plate. 
# Use -1 to indicate that the plate should be ignored by the script.
plateType = -1
# List of vehicles to exclude from license plate changes.
excludeVehicles = []

# ---------------------------------
# --   Additional Configuration  --
# ---------------------------------
# You can add more configurations for specific vehicles below.
# For example:
#[vehicleType.EMS] # Replace EMS with any name that represents the vehicle type 
#isTypeEnabled = true 
#className = "EmergencyVehicle" # Should match the vehicle class name at the top, followed by "Vehicle"
#plateFormat = "XXX-0000" 
#plateType = 4 
#allowedVehicles = ["AMBULANCE"] # List of vehicles allowed for license plate changes within this type.