How to get player's name at the ping screen
#2
Do you mean something like this?:

function OnServerPing(ClientHandle, ServerDescription, OnlinePlayers, MaxPlayers, Favicon)
	local newDescription = "";
	cRoot:ForEachPlayer(function(player)
		newDescription = newDescription .. player:GetName();
	end);
	
	return false, newDescription, OnlinePlayers, MaxPlayers, Favicon
end
Reply
Thanks given by:


Messages In This Thread
RE: How to get player's name at the ping screen - by NiLSPACE - 08-14-2018, 01:25 AM



Users browsing this thread: 2 Guest(s)