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
// In your server.cfg
ensure ox_lib
ensure skeexs_invoices
// DO NOT DO THIS
ensure skeexs_invoices
ensure ox_libInstall the asset
Setting it up
Configuring to work with your server
-- 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