Files
jim-payments/config.lua

35 lines
1.7 KiB
Lua
Raw Permalink Normal View History

print("Jim-Payments v2.1 - Payments Script by Jimathy")
2022-02-05 15:44:29 +00:00
-- If you need support I now have a discord available, it helps me keep track of issues and give better support.
-- https://discord.gg/xKgQZ6wZvS
Config = {}
2022-02-20 15:30:15 +00:00
Config.TicketSystem = true -- Enable this if you want to use the ticket system
Config.PaymentRadius = 30 -- This is how far the playerlist will check for nearby players (based on the person charging)
Config.useATM = true -- Enable this to use my ATM's
Config.useBanks = true -- Enable this to use my banking stuff
Config.BankBlips = true -- Enable this if you disabled qb-banking and need bank locations
Config.ATMBlips = false -- Enable this if you are a pyscho and need every ATM to be on the map too
2022-02-05 15:44:29 +00:00
Config.PhoneBank = true -- Set this to false to use the popup payment system FOR CARD/BANK PAYMENTS instead of using phone invoices
-- This doesn't affect Cash payments as they by default use confirmation now
-- This is helpful for phones that don't support invoices well
2022-02-19 11:56:21 +00:00
-- MinAmountforTicket should be your cheapest item
-- PayPerTicket should never be higher than MinAmountforTicket
2022-02-05 15:44:29 +00:00
Config.Jobs = {
2022-02-25 12:52:10 +00:00
['beanmachine'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
2022-02-05 15:44:29 +00:00
['burgershot'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['catcafe'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['henhouse'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['pizzathis'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['popsdiner'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
2022-02-05 15:44:29 +00:00
['tequilala'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['vanilla'] = { MinAmountforTicket = 50, PayPerTicket = 50 },
['mechanic'] = { MinAmountforTicket = 1000, PayPerTicket = 500 },
2022-02-06 17:25:46 +00:00
}