1
0
Fork 0
forked from Simnation/Main
Main/resources/[inventory]/pl_printer/client/bridge/esx.lua
2025-06-25 18:03:44 +02:00

12 lines
311 B
Lua

local ESX = GetResourceState('es_extended'):find('start') and exports['es_extended']:getSharedObject() or nil
if not ESX then return end
function Notification(msg)
ESX.ShowNotification(msg)
end
RegisterNetEvent('esx:playerLoaded')
AddEventHandler('esx:playerLoaded', function()
onPlayerLoaded()
end)