mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 18:01:25 +00:00
16 lines
767 B
Lua
16 lines
767 B
Lua
RegisterNetEvent('esx:playerLoaded') -- When a player loads in, we can store some basic information about them locally
|
|
AddEventHandler('esx:playerLoaded', function(playerId, xPlayer, isNew)
|
|
ESX.Players[playerId] = xPlayer.job.name
|
|
end)
|
|
|
|
AddEventHandler('esx:playerDropped', function(playerId, reason) -- Remove the data once the player no longer exists
|
|
ESX.Players[playerId] = nil
|
|
end)
|
|
|
|
AddEventHandler('onResourceStart', function(resourceName) -- The resource just restarted so we actually have a fresh copy of ESX.Players from the framework
|
|
if (GetCurrentResourceName() == resourceName) then
|
|
for playerId, xPlayer in pairs(ESX.Players) do
|
|
print( ('%s %s is online with player id %s'):format(xPlayer.job.grade_label, xPlayer.name, playerId) )
|
|
end
|
|
end
|
|
end) |