Server/no_escrow.lua
-- # Framework ------------------------------------------------------------------------------------
if Config.Settings['Framework'] == 'esx' then
ESX = exports['es_extended']:getSharedObject()
elseif Config.Settings['Framework'] == 'old-esx' then
ESX = nil
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
elseif Config.Settings['Framework'] == 'qb' then
QBCore = exports['qb-core']:GetCoreObject()
elseif Config.Settings['Framework'] == 'old-qb' then
QBCore = nil
Citizen.CreateThread(function()
while QBCore == nil do
TriggerEvent('QBCore:GetObject', function(obj) QBCore = obj end)
Citizen.Wait(200)
end
end)
elseif Config.Settings['Framework'] == 'qbx' then
if GetResourceState('qbx_core') == 'started' then
QBCore = exports['qbx-core']:GetCoreObject()
elseif GetResourceState('qbx-core') == 'started' then
QBCore = exports['qbx_core']:GetCoreObject()
end
elseif Config.Settings['Framework'] == 'custom' then
-- | # If you are using a custom framework, fill in this section accordingly.
end
-- # Reward Function ------------------------------------------------------------------------------------
Give_Reward = function(Player_Id, Reward)
local src = Player_Id
local Player = nil
if Config.Settings['Framework'] == 'esx' or Config.Settings['Framework'] == 'old-esx' then
Player = ESX.GetPlayerFromId(src)
elseif Config.Settings['Framework'] == 'qb' or Config.Settings['Framework'] == 'old-qb' or Config.Settings['Framework'] == 'qbx' then
Player = QBCore.Functions.GetPlayer(src)
elseif Config.Settings['Framework'] == 'custom' then
-- | # If you are using a custom framework, fill in this section accordingly.
end
if Reward.type == 'money' then
if Config.Settings['Framework'] == 'esx' or Config.Settings['Framework'] == 'old-esx' then
Player.addMoney(Reward.amount)
elseif Config.Settings['Framework'] == 'qb' or Config.Settings['Framework'] == 'old-qb' or Config.Settings['Framework'] == 'qbx' then
Player.Functions.AddMoney('bank', Reward.amount)
elseif Config.Settings['Framework'] == 'custom' then
-- | # If you are using a custom framework, fill in this section accordingly.
end
elseif Reward.type == 'item' then
if Config.Settings['Inventory'] == 'qb-default' then
Player.Functions.AddItem(Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'esx-default' then
Player.addInventoryItem(Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'ox-inv' then
exports.ox_inventory:AddItem(src, Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'qs-inv' then
exports['qs-inventory']:AddItem(src, Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'codem-inv' then
exports['codem-inventory']:AddItem(src, Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'tgiann-inv' then
exports['tgiann-inventory']:AddItem(src, Reward.name, Reward.amount, nil, {}, false)
elseif Config.Settings['Inventory'] == 'trygon-inv' then
exports['uz_TrygonInventory']:AddItem(src, Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'core-inv' then
exports.core_inventory:addItem(src, Reward.name, Reward.amount)
elseif Config.Settings['Inventory'] == 'custom' then
-- | # If you are using a custom inventory, fill in this section accordingly.
end
end
end
Last updated