π³QBCore Phone
Server File Change
local WebHook = 'https://api.fivemerr.com/v1/media/images' -- Enter the API URL here
local WebHookKey = 'WEBHOOKKEY' -- Add this new var containing your API KeyQBCore.Functions.CreateCallback('qb-phone:server:GetWebhook', function(_, cb)
if WebHook ~= '' then
cb(WebHook)
else
print('Set your webhook to ensure that your camera will work!!!!!! Set this on line 10 of the server sided script!!!!!')
cb(nil)
end
end)Client File Change
Last updated