Configuration
Below we have explained some of the key features found in our Config file within the Fake ID Script.
Framework
Select your framework (by default the script will auto detect)
Config.Framework = "auto" -- "auto", "qb-core", "qbox"Inventory
If you have an inventory system that is not one of the listed types then this means the script doesn't support
it as of this moment in time.
Config.InventorySystem = 'auto' -- "auto", "qb-inventory", "qs-inventory", "ox_inventory"Target System
The script supports both qb-target and ox_target to allow the 3rd eye functions within this script.
Config.TargetSystem = "auto" -- "auto", "qb-target", "ox_target"Shop
The script comes with preconfigured shop and location settings but you can alter these to suite interiors
or locations you would rather have the areas marked as.
Config.Shop = {
location = vector3(327.16, -1258.44, 32.11),
heading = 265.99,
ped = "a_m_m_business_01",
blip = {
enabled = true,
sprite = 52,
colour = 1,
scale = 0.8,
name = "Blank Cards Shop"
},
item = {
name = "blank_id_card",
label = "Blank ID Card",
price = 500
}
}
Config.CreateLocation = {
location = vector3(335.0, -1294.9, 32.51),
heading = 153.91,
ped = "a_m_m_prolhost_01",
blip = {
enabled = true,
sprite = 374,
colour = 2,
scale = 0.8,
name = "Fake ID Creation"
}
}
Pickup Locations
To keep your criminals on their toes the script supports multiple pick up locations for your fake_id_card to be
collected from. You can keep the default locations or if you want you can add or remove the locations to use
your own.
Using qs-inventory
If you are using qs-inventory you will need to add the following code to qs-inventory -> shared -> items.lua.
Items also need to be added to the qb-core -> shared -> items.lua to ensure for compatibility with qs-inventory.
To Display Metadata and depending on your version of qs-inventory you will need to add the following snippet below the existing id_card in this file qs-inventory -> config -> metadata.js.
Using ox_intentory
If you are using ox_inventory you will need to add the following code to ox_inventory -> data -> items.lua.
Using qb-core
If you are using qb-inventory you will need to add the following code to qb-core -> shared -> items.lua.
Config File before edits
Last updated