Installation
Download the purchased resource from keymaster or cfx portals - the official site of fivem with purchased resources.
Unzip the
g-order-systemCreate a Folder - In your resources directory, create a new folder and name it
[g-scripts]if it has not already been created.Drag
g-order-systemin to[g-scripts]
Arrangement
Add this line in your server.cfg file
ensure [g-scripts]Frameworks Compatibility
✅ Automatic Framework Detection
Dependencies & Direct Links
The script automatically detects the framework you're using—no manual setup is required.
Supported Frameworks
QBCore
QBox
ESX (v1.11.0 or newer)
g-notification (optional)
Database
Automatic SQL Insertion
If you enable Config.AutoImportSQL in [g-order-system/src/shared/Config.lua], the script will automatically insert the required SQL when the resource starts. Once the SQL has been added successfully, you can set this option to false.
Manual SQL Insertion
If you prefer to add the SQL manually, the necessary queries are available in the g-adv-paycheck/sqls folder.
Inventory Items Images
All inventory item images for g-order-system can be found in the following directory:
g-order-system/_INSTALL/inventoryimages
Inventory items
["pos_tablet"] = {
label = "Order Tablet",
weight = 1200,
stack = false,
close = true,
},
["pos_receipt"] = {
label = "Receipt",
weight = 20,
stack = false,
close = true,
},pos_tablet = {
name = "pos_tablet",
label = "POS Tablet",
weight = 1200,
type = "item",
image = "pos_tablet.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "A tablet used for point of sale.",
},
pos_receipt = {
name = "pos_receipt",
label = "Receipt",
weight = 20,
type = "item",
image = "pos_receipt.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "A receipt used for point of sale.",
},['pos_tablet'] = {
name = "pos_tablet",
label = "POS Tablet",
weight = 1200,
type = "item",
image = "pos_tablet.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "A tablet used for point of sale.",
},
['pos_receipt'] = {
name = "pos_receipt",
label = "Receipt",
weight = 20,
type = "item",
image = "pos_receipt.png",
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = "A receipt used for point of sale.",
},No worries! Please join our Discord and create a ticket. We’ll also make compatibility with your inventory. Note: Our system works with any inventory that supports metadata. Discord Link – https://discord.gg/Nm5FSxK2gv
Last updated