- Joined
- Mar 19, 2021
- Messages
- 786
- Solutions
- 5
- Reaction score
- 88,222
- Points
- 421
- Location
- Hungary
- Website
- vfivem.com
Opening the create invoice menu directly from a menu or a third eye script
Add the following code anywhere inside client.lua file:
Code:
exports('CreateNewInvoice', function(job)
return CreateInvoice(job)
end)
To trigger it, use the following code:
Code:
exports['okokBilling']:CreateNewInvoice('jobname')