de29399987
Made some changes to WebAdmin to make the new plugins work Old plugins still work like they're supposed to Not all hooks have been programmed for the new plugins yet, this still needs to be done git-svn-id: http://mc-server.googlecode.com/svn/trunk@182 0a769ca7-a7f5-676a-18bf-c427514a06d6
16 lines
522 B
Lua
16 lines
522 B
Lua
function HandlePlayerListCommand( Split, Player )
|
|
local World = Player:GetWorld()
|
|
local PlayerList = World:GetAllPlayers()
|
|
|
|
local Message = cChatColor.Green .. "Connected players: (".. cChatColor.White.. #PlayerList .. cChatColor.Green .. ")"
|
|
Player:SendMessage( Message )
|
|
|
|
local PlayerTable = {}
|
|
for i, TempPlayer in ipairs( PlayerList ) do
|
|
local PlayerName = TempPlayer:GetName()
|
|
table.insert(PlayerTable, PlayerName )
|
|
end
|
|
|
|
Player:SendMessage( table.concat(PlayerTable, " ") )
|
|
return true
|
|
end |