Installation Guide
1. Step One - Download
Download
akre_applications.zip
from FiveM's PortalUnzip
akre_applications.zip
and paste this folder in your server's resources folder.Add the script to
server.cfg
to automatically start it when the server starts. Make sure you paste it underqb-core
. If you are put script folder into some other of yours server folders
FOR QBCORE ADD ITEM TO: qb-core/shared/items.lua
["akre_certificate"] = {
name = "akre_certificate",
label = "Certificate",
weight = 5,
type = "item",
image = "certificate.png",
unique = true,
useable = false,
shouldClose = false,
combinable = nil,
description = ""
},
FOR OX_INVENTORY GO TO akre_applications/server/server.lua/line:357-366 and unmark this part:
exports.ox_inventory:AddItem(src, npcData.successItem.item, 1, {
fullname = playerFirstname .. " " .. playerLastname,
birthdate = birthdate,
testname = npcData.successItem.testName or npcData.label,
date = dateIssued,
id = uniqueId,
result = "APPROVED",
examiner = npcData.successItem.examiner or "",
issuedBy = npcData.successItem.issuedBy or ""
})
Last updated