This commit is contained in:
Nordi98 2025-07-20 22:06:58 +02:00
parent 7533584a53
commit c6be40ffbd
18 changed files with 1492 additions and 3 deletions

View file

@ -0,0 +1,12 @@
Core = exports['r_bridge']:returnCoreObject()
local onPlayerLoaded = Core.Info.Framework == 'ESX' and 'esx:playerLoaded' or 'QBCore:Client:OnPlayerLoaded'
RegisterNetEvent(onPlayerLoaded, function()
TriggerEvent('r_moneywash:onConnect')
end)
function _debug(...)
if Cfg.Debug then
print(...)
end
end