Download Revo ID Card
Visit the FiveM Keymaster and download the latest version of Revo ID Card. Save the script to your computer. Add to Resources
Place the downloaded revo_idcard folder inside your server’s resources directory.
Configure server.cfg
Add the following line to your server.cfg to ensure Revo ID Card starts with your server: Add Items to Your Inventory System
Revo ID Card supports the following inventory systems. Choose the one you’re using and follow the corresponding instructions: ox_inventory
qb-inventory
qs-inventory
Open your ox_inventory/data/items.lua file and add the following items:['id_card'] = {
label = 'ID Card',
weight = 1,
stack = false,
close = true,
description = "Your personal identification card.",
client = {
image = 'revo_id_card.png',
}
},
['driver_license'] = {
label = 'Driver License',
weight = 1,
stack = false,
close = true,
description = "Your driver's license.",
client = {
image = 'revo_driver_license.png',
}
},
['firearm_license'] = {
label = 'Firearm License',
weight = 1,
stack = false,
close = true,
description = "Your weapon's license.",
client = {
image = 'revo_weapon_license.png',
}
},
Add images (from items-images folder of revo_idcard) to: ox_inventory/web/images/
- revo_id_card.png
- revo_driver_license.png
- revo_weapon_license.png
Open your qb-core/shared/items.lua file and add the following items:['id_card'] = {
name = 'id_card',
label = 'ID Card',
weight = 1,
type = 'item',
image = 'revo_id_card.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your personal identification card.'
},
['driver_license'] = {
name = 'driver_license',
label = 'Driver License',
weight = 1,
type = 'item',
image = 'revo_driver_license.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your driver\'s license.'
},
['firearm_license'] = {
name = 'firearm_license',
label = 'Firearm License',
weight = 1,
type = 'item',
image = 'revo_weapon_license.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your weapon\'s license.'
},
Add images (from items-images folder of revo_idcard) to: qb-inventory/html/images/
- revo_id_card.png
- revo_driver_license.png
- revo_weapon_license.png
For ESX servers: Add the following items to qs-inventory/shared/items.luaFor QBCore servers: Add the same items to qb-core/shared/items.lua['id_card'] = {
name = 'id_card',
label = 'ID Card',
weight = 1,
type = 'item',
image = 'revo_id_card.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your personal identification card.'
},
['driver_license'] = {
name = 'driver_license',
label = 'Driver License',
weight = 1,
type = 'item',
image = 'revo_driver_license.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your driver\'s license.'
},
['firearm_license'] = {
name = 'firearm_license',
label = 'Firearm License',
weight = 1,
type = 'item',
image = 'revo_weapon_license.png',
unique = true,
useable = true,
shouldClose = true,
description = 'Your weapon\'s license.'
},
Add images (from items-images folder of revo_idcard) to: qs-inventory/html/images/
- revo_id_card.png
- revo_driver_license.png
- revo_weapon_license.png
Start the Resource
After adding the items and images, restart your inventory resource (ox_inventory, qb-inventory, or qs-inventory) to load the new items.Then restart your server or run these commands in the server console:refresh
ensure revo_idcard
Revo ID Card is fully configurable and optimized for performance. You can customize NPCs, card visuals, and prices in the config.lua file.