Vehicle::livery
This property using for getting or setting vehicle livery.
Setter
- livery value
Getter
- livery value
Example Vehicle Livery
  
"police" has 5 liveries. (Rooftop numbers: 32, 76, 05, 84, 43).
Example
```js mp.events.addCommand({
//... other commands
'livery' : (player, _, livery) => \{
if(!player.vehicle) return; // check if player in vehicle or not
if(!livery || livery < 0) return; // check player input livery or not, and livery less than 0
player.vehicle.livery = JSON.parse([livery]); // set vehicle's livery
\},
//... other commands
}); ```