Steam ID's not showing

Capture3

Steam IDs don’t show in the server console… you script that in yourself.

1 Like

ahh it use to be the case when i made a server

but its easy to make.

clientside: on join - trigger server event
serverside: get the steamid and just print() it.

Or just on join, server sided?

AddEventHandler('playerConnecting', function(playerName, setKickReason)
    identifiers = GetPlayerIdentifiers(source)
    for i in ipairs(identifiers) do
        print('Player: ' .. playerName .. ', Identifier #' .. i .. ': ' .. identifiers[i])
    end
end)

See: WhatsMyId? | Player Identifier Finder

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.