kts.GetAllPlayers – get the list of players in the game
result = kts.GetAllPlayers()
Returns a list of players in the game.
The list includes all players, even those who were eliminated (by kts.EliminatePlayer, or by being permanently killed in a "wand of securing" quest).
The return value is a Lua table/array, in which each element is a Player userdata object. (These objects can be used with functions like kts.IsEliminated or kts.GetPlayerName, among others.)
None.