Installation
Learn how to install skeexs_invoices. This will help you if you have any questions or just don't know what to do.
HEADS UP
To get this script to work properly, I need you to install ox_lib Start this script before the resource, like this:
// In your server.cfg
ensure ox_lib
ensure skeexs_invoices
// DO NOT DO THIS
ensure skeexs_invoices
ensure ox_libInstall the asset
First and foremost, when buying a script from Skeexs Scripts you'll have to download the asset from either https://keymaster.fivem.net or https://portal.cfx.re, from there you will get a asset named skeexs_invoices.
Setting it up
Now you need to set it up for your own server, this will not take long. You get a
invoices.sqlfile, to get this script to work you need to run this. After running this we're almost done.
Configuring to work with your server
Now I suppose you have extracted the file into your resources folder, started ox_lib and skeexs_invoices Now its time to configure it to your liking. In
src/config/main.luayou will find the main config options Here you can set the language for the script, currently only supporting Swedish and English Change these to how you want them. I would recommend to haveConfig.Debug = falseif you dont want any un-needy prints in your console.-- src/config/main.lua Config = {}; --- This is the framework you're using, either 'esx' or 'qb' --- @type string --- @default 'esx' Config.Framework = 'esx' -- Use this only when getting support from me or if you know what you're doing -- This will print unneedy information to the console, which can be useful for debugging but not for normal use --- @type boolean Config.Debug = false; -- Change this to your language -- If theres a language you want me to add, please feel free to DM me on Discord with said language and translations -- https://discord.gg/JRMnUJaS --- @alias Lang 'en' | 'sv' --- @type Lang Config.Lang = 'en';
Last updated