1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bl_idcard
2025-08-04 04:28:47 +02:00
..
build ed 2025-08-04 04:28:47 +02:00
client ed 2025-08-04 04:28:47 +02:00
images ed 2025-08-04 04:28:47 +02:00
server ed 2025-08-04 04:28:47 +02:00
shared ed 2025-08-04 04:28:47 +02:00
web ed 2025-08-04 04:28:47 +02:00
.DS_Store ed 2025-08-04 04:28:47 +02:00
.gitignore ed 2025-08-04 04:28:47 +02:00
_types.lua ed 2025-08-04 04:28:47 +02:00
fxmanifest.lua ed 2025-08-04 04:28:47 +02:00
LICENSE ed 2025-08-04 04:28:47 +02:00
preview.png ed 2025-08-04 04:28:47 +02:00
readme.md ed 2025-08-04 04:28:47 +02:00

Byte Labs - ID Card

A customisable system with an immaculate ID card design for your FiveM server.

Preview

Website: Byte Labs Discord: Byte Labs

Preview Preview Preview Preview

Features

  • Customisable ID card design with a clean and modern look

Dependencies

Installation

  1. Download
  2. Extract the bl_idcard folder to your resources directory
  3. Add ensure bl_idcard to your server.cfg after bl_bridge
  4. Follow Docs Instructions
  5. Configure the config.lua to your liking

Items

OX Inventory

	["id_card"] = {
		label = "ID Card",
		weight = 0,
		stack = false,
		close = false,
		description = "A card containing all your information to identify yourself",
	},

    ["driver_license"] = {
		label = "Drivers License",
		weight = 0,
		stack = false,
		close = false,
		description = "Permit to show you can drive a vehicle",
	},

	["weaponlicense"] = {
		label = "Weapon License",
		weight = 0,
		stack = false,
		close = true,
		description = "Weapon License",
	},

QB / QS / PS Inventory

    ['id_card']  = {
        name = 'id_card',
        label = 'ID Card',
        weight = 0,
        type = 'item',
        description = 'A card containing all your information to identify yourself',
        unique = true,
        useable = true,
        image = 'id_card.png',
        combinable = nil,
    },

    ['driver_license'] = {
        name = 'driver_license',
        label = 'Drivers License',
        weight = 0,
        type = 'item',
        description = 'Permit to show you can drive a vehicle',
        unique = true,
        useable = true,
        image = 'driver_license.png',
        combinable = nil,
    },

    ['weaponlicense'] = {
        name = 'weaponlicense',
        label = 'Weapon License',
        weight = 0,
        type = 'item',
        description = 'Weapon License',
        unique = true,
        useable = true,
        image = 'weaponlicense.png',
        combinable = nil,
    },