From a4a67da493aa4420e5b480684b2a6c8b3eda7531 Mon Sep 17 00:00:00 2001 From: jimathy Date: Thu, 10 Mar 2022 23:42:35 +0000 Subject: [PATCH] Move bank enabling varibles to Config.lua --- atms.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/atms.lua b/atms.lua index 710cf3d..56648a3 100644 --- a/atms.lua +++ b/atms.lua @@ -5,12 +5,6 @@ local QBCore = exports['qb-core']:GetCoreObject() -- This requires QB-Target and has the location of every ATM, ATM prop and bank window -- If Config.useATM = false, then none of this load ---Specific to ATM config options -Config.useATM = false -Config.useBanks = true -Config.BankBlips = true -Config.ATMBlips = false - Config.ATMModels = {"prop_atm_01", "prop_atm_02", "prop_atm_03", "prop_fleeca_atm" } Config.ATMLocations = { @@ -379,4 +373,4 @@ RegisterNetEvent('jim-payments:client:ATM:give', function() TriggerServerEvent('jim-payments:server:ATM:give', dialog.citizen, dialog.price) end end) -end) \ No newline at end of file +end)