Plugin written on the QB framework to handle car license plates within FiveM game
- QB-Core
- QB-Inventory
- You can customise where to buy the empty license plates using the config file.
- The empty license plates can be converted to 'registered license plates' for a higher amount of money
- The empty license plates can be converted to 'fake license plates' for a lower amount of money
- If you have within your inventory fake or registered license plates you can go behind your car and change the plates.
- Add following lines to the qb-core\shared\items
['empty_license_plate'] = {['name'] = 'empty_license_plate', ['label'] = 'Empty License Plate', ['weight'] = 150, ['type'] = 'item', ['image'] = 'licenseplate.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An empty license plate.'},
['fake_license_plate'] = {['name'] = 'fake_license_plate', ['label'] = 'Fake License Plate', ['weight'] = 150, ['type'] = 'item', ['image'] = 'licenseplate.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A fake license plate.'},
['registered_license_plate'] = {['name'] = 'registered_license_plate', ['label'] = 'Registered License Plate', ['weight'] = 150, ['type'] = 'item', ['image'] = 'licenseplate.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A registered license plate ready to use'}
- Add licenseplate.png to qb-inventory\html\images