Files
esx_core/esx_example/server/main.lua
T

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)