- Create forged licenses
- Add any license to the config
- Add extra input options for each license
- Useable forged license items (shows info to players nearby)
https://www.youtube.com/watch?v=tlg6rMOwYqs
- qb-core
- ox_lib
- ox_inventory
- ox_target
- Add items to ox_inventory > data > items.lua
["forged_id"] = {
label = "ID Card",
weight = 0,
stack = false,
close = true,
description = "A card containing citizen info",
client = {
image = "id_card.png",
}
},
["forged_driverslicense"] = {
label = "Drivers License",
weight = 0,
stack = false,
close = true,
description = "A license allowing a citizen to operate a vehicle.",
client = {
image = "driver_license.png",
}
},
["forged_weaponslicense"] = {
label = "Weapons License",
weight = 0,
stack = false,
close = true,
description = "A license allowing a citizen to carry firearms",
client = {
image = "weapon_license.png",
}
},- Add any extra licenses you want to the config
- Enjoy!
