🛠️Installation
Follow the steps below to install and set up the FT Scripts system on your FiveM server.
1️⃣ Dependencies
Before installing the script, make sure the following required resources are already running:
To Take Picture for Id Card
2️⃣ Download & Extract
Download the script from Keymaster/assets page.
Extract it into your server's
resources
folder.Suggested folder structure:
resources/[ft-scripts]/ft_idcards
3️⃣ Install Database.
Go to ft_idcards\INSTALL-FIRST\database.sql
Install SQL in server database
Note: If already installed make sure to drop old TABLES
4️⃣ Configure Id Cards.
Go to
ft_idcards\shared\config.lua
Configure it as your need
To add new Id Cards you have to make sure to configure both parts
Just copy existing card block and paste in next block after
},
make sure to add image at already define path with same image name as card item name
Config.Licenses = {
[1] = {
id = "id_card",
title = "Identity Card",
description = "Government-issued ID for identity verification.",
ApplyFee = 100,
RenewalFee = 150,
image = "ui-images/id_card_template.png"
},
-- Other Cards
}
Config.PlayerLicenses = {
id_card = {
id = "id_card",
title = "Identity Card"
},
-- Other Cards
}
5️⃣ Install Inventory Item
Go to
ft_idcards\INSTALL-FIRST
get item file depending on your inventoryIf adding custom card Item make sure to just copy paste old item and just change name of it
Also add images of cards in inventory images folder
6️⃣ Ensure the script in your server.cfg
file.
server.cfg
file.ensure es_extended
ensure ft_idcards
7️⃣ Done
✅ Restart your server! 🎉 Enjoy the script!
Last updated