2022-02-05 15:03:08 +00:00
|
|
|
# jim-payments
|
|
|
|
|
QBCore based payment system
|
2022-02-05 15:43:14 +00:00
|
|
|
|
2022-02-19 11:57:01 +00:00
|
|
|
If you think I did a good job here, consider donating as it keeps by lights on and my cat fat:
|
|
|
|
|
https://ko-fi.com/jixelpatterns
|
|
|
|
|
--------------
|
2022-02-09 12:45:08 +00:00
|
|
|
|
2022-02-07 22:31:36 +00:00
|
|
|
If you use a different phone/invoice system let me know and I will add support for it as best I can!
|
|
|
|
|
|
2022-02-05 15:43:14 +00:00
|
|
|
Enchanced QB-Input payment system from my other scripts now free on its own
|
|
|
|
|
|
2022-02-19 12:18:23 +00:00
|
|
|
 
|
|
|
|
|
 
|
2022-02-05 15:43:14 +00:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
|
|
To make use of this payment system you need trigger the event
|
|
|
|
|
|
|
|
|
|
```jim-payments:client:Charge```
|
|
|
|
|
|
|
|
|
|
for example with qb-target
|
|
|
|
|
```
|
|
|
|
|
exports['qb-target']:AddBoxZone("Receipt", vector3(1589.14, 6458.26, 26.01), 0.6, 0.6, { name="Receipt", heading = 335.0, debugPoly=debugPoly, minZ = 26.01, maxZ = 26.81, },
|
|
|
|
|
{ options = { { event = "jim-payments:client:Charge", icon = "fas fa-credit-card", label = "Charge Customer", job = "popsdiner" } }, distance = 2.0 })
|
|
|
|
|
```
|
|
|
|
|
It currently requires you to be on duty to charge someone
|
|
|
|
|
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
To make use of the ticket reward system for workers you need to add the ticket item to your shared items lua:
|
|
|
|
|
```
|
|
|
|
|
["payticket"] = {["name"] = "payticket", ["label"] = "Receipt", ["weight"] = 150, ["type"] = "item", ["image"] = "ticket.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "Cash these in at the bank!"},
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Add the ticket image to your inventory script
|
|
|
|
|
|
|
|
|
|
[qb] > qb-inventory > html > images
|
|
|
|
|
|
|
|
|
|
--------------
|
|
|
|
|
To get tickets from phone invoices you NEED to add it to the event when a payment is accepted:
|
|
|
|
|
|
|
|
|
|
Go to [qb] > qb-phone > client > main.lua
|
|
|
|
|
- Around line 645 there should be the PayInvoice NUICallBack
|
|
|
|
|
- Directly under this line:
|
|
|
|
|
|
|
|
|
|
```TriggerServerEvent('qb-phone:server:BillingEmail', data, true)```
|
|
|
|
|
|
|
|
|
|
- Add this line:
|
|
|
|
|
|
2022-04-11 18:58:55 +01:00
|
|
|
```TriggerServerEvent('jim-payments:Tickets:Give', data)```
|
2022-02-19 11:57:01 +00:00
|
|
|
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
The latest banking systems are very simple to use and add,
|
|
|
|
|
simply look in the atms.lua and change the config options at the top
|
|
|
|
|
|
|
|
|
|
Choose wether to use atm's, choose wether to use banking locations
|
|
|
|
|
Choose wether to add bank blips (if you want to disable qb-banking)
|
|
|
|
|
Choose wether to add ATM blips (if you like $ signs)
|
2022-04-11 18:58:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
New Commission system added
|
|
|
|
|
|
|
|
|
|
This brings more config options to find tune the script
|
|
|
|
|
|
|
|
|
|
Choose wether people get commission from every sale
|
|
|
|
|
Choose if EVERY worker gets Commission that is on duty
|
|
|
|
|
Choose if Commission is limited by MinAmountForTicket
|
|
|
|
|
Choose if the worker charging the customer gets double commission
|