-- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!! -- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!! -- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!! function GetCore() local object = nil local Framework = Config.Framework if Config.Framework == "oldesx" then local counter = 0 while not object do TriggerEvent('esx:getSharedObject', function(obj) object = obj end) counter = counter + 1 if counter == 3 then break end Citizen.Wait(1000) end if not object then print( "codem-billing::Framework is not selected in the config correctly if you're sure it's correct please check your events to get framework object") end end if Config.Framework == "esx" then local counter = 0 local status = pcall(function() exports['es_extended']:getSharedObject() end) if status then while not object do object = exports['es_extended']:getSharedObject() counter = counter + 1 if counter == 3 then break end Citizen.Wait(1000) end end if not object then print( "codem-billing::Framework is not selected in the config correctly if you're sure it's correct please check your events to get framework object") end end if Config.Framework == "qb" then local counter = 0 local status = pcall(function() exports["qb-core"]:GetCoreObject() end) if status then while not object do object = exports["qb-core"]:GetCoreObject() counter = counter + 1 if counter == 3 then break end Citizen.Wait(1000) end end if not object then print( "codem-billing::Framework is not selected in the config correctly if you're sure it's correct please check your events to get framework object") end end if Config.Framework == "oldqb" then local counter = 0 while not object do counter = counter + 1 TriggerEvent('QBCore:GetObject', function(obj) object = obj end) if counter == 3 then break end Citizen.Wait(1000) end if not object then print( "codem-billing::Framework is not selected in the config correctly if you're sure it's correct please check your events to get framework object") end end if Config.Framework == 'autodetect' then local counter = 0 local breakLoop = false Citizen.CreateThread(function() while not object do counter = counter + 1 if counter == 3 then breakLoop = true counter = 0 end Citizen.Wait(700) end end) while not object do local status = pcall(function() object = exports['es_extended']:getSharedObject() end) Citizen.Wait(1000) break end if object and Framework == 'autodetect' then Framework = 'esx' end while not object do TriggerEvent('esx:getSharedObject', function(obj) object = obj end) if breakLoop then break end Citizen.Wait(1000) end if object and Framework == 'autodetect' then Framework = 'oldesx' end while not object do local status = pcall(function() object = exports["qb-core"]:GetCoreObject() end) Citizen.Wait(1000) break end if object and Framework == 'autodetect' then Framework = 'qb' end while not object do TriggerEvent('QBCore:GetObject', function(obj) object = obj end) if breakLoop then break end Citizen.Wait(1000) end if object and Framework == 'autodetect' then Framework = 'oldqb' end if not object then print( "codem-billing::Auto detect couldn't detect your framework please check your event to get framework object") else print("codem-billing::Framework object found : ", Framework) end end return object, Framework end -- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!! -- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!! -- BEST SCRIPTS/ MLOS/ CARS IN DISCORD.GG/DEMONDEV!!!