More new plugin awesomeness
git-svn-id: http://mc-server.googlecode.com/svn/trunk@174 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
16
Plugins/NewTest/playerlist.lua
Normal file
16
Plugins/NewTest/playerlist.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user