📅  最后修改于: 2022-03-11 14:54:54.708000             🧑  作者: Mango
for _, playerId in ipairs(GetPlayers()) do
local name = GetPlayerName(playerId)
print(('Player %s with id %i is in the server'):format(name, playerId))
-- ('%s'):format('text') is same as string.format('%s', 'text)
end