> ## Documentation Index
> Fetch the complete documentation index at: https://docs.czautoz.co.uk/llms.txt
> Use this file to discover all available pages before exploring further.

# License Plates

> Free add-on — front and rear license-plate slots on the CZ Autoz range, with ready-made plates and a base class built for unlimited custom server plates.

**Callatic Vehicles License Plates** is a **free** companion mod for the CZ Autoz vehicle range. It adds **front and rear license-plate slots** to the cars, ships two ready-made plates, and includes a base class deliberately built so server owners can create their own custom plates from a single texture.

<Note>
  Free means free — no whitelist, no Community Framework. Load it alongside any CZ Autoz vehicle mod.
</Note>

## Slots

The CZ Autoz cars gain two attachment slots:

| Slot            | Display name        |
| --------------- | ------------------- |
| `LicensePlate1` | License Plate Front |
| `LicensePlate2` | License Plate Rear  |

Any plate fits any car with the slots — front and rear both take the same plate items.

## Shipped plates

| Classname            | Display name             |
| -------------------- | ------------------------ |
| `LicensePlate_White` | License Plate (White)    |
| `LicensePlate_CZ`    | License Plate (CZ Autoz) |

Plates are small items (3×1 slots, 150 g) — easy to carry a spare or trade.

## Custom server plates

The mod ships a non-spawnable base class, `LicensePlate_Base`, built for reskinning: make unlimited plates for your server or community by swapping a single texture. Paint your design over a copy of the plate texture, save it as a `.paa`, and add a tiny config:

```cpp theme={null}
class CfgPatches
{
    class MyServer_Plates
    {
        units[] = { "LicensePlate_MyServer" };
        requiredVersion = 0.1;
        requiredAddons[] = { "Callatic_Vehicles_License_Plates" };
    };
};

class CfgVehicles
{
    class LicensePlate_Base;

    class LicensePlate_MyServer : LicensePlate_Base
    {
        scope = 2;
        displayName = "License Plate (My Server)";
        hiddenSelectionsTextures[] = { "MyServerMod\data\plate_myserver_co.paa" };
    };
};
```

Leave the inherited inventory slots untouched and your plate automatically fits every car with the plate slots.

## types.xml

```xml theme={null}
<type name="LicensePlate_White">
    <nominal>10</nominal>
    <lifetime>14400</lifetime>
    <restock>1800</restock>
    <min>4</min>
    <cost>100</cost>
    <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    <category name="tools"/>
</type>
<type name="LicensePlate_CZ">
    <nominal>10</nominal>
    <lifetime>14400</lifetime>
    <restock>1800</restock>
    <min>4</min>
    <cost>100</cost>
    <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    <category name="tools"/>
</type>
```

<Note>
  Example values — tune to your economy, or hand plates out at traders and events instead.
</Note>
