diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-20 14:20:20 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-20 14:20:20 +0200 |
commit | 12906c026d414c752d3c0ba9481f425b24b29c67 (patch) | |
tree | d64298334a68275e0d7c22c9dfb0e82c95654f83 /Plugins/Core/web_playerlist.lua | |
parent | Window, Chest, Furnace and Pawn are not using cPackets at all (diff) | |
download | cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar.gz cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar.bz2 cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar.lz cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar.xz cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.tar.zst cuberite-12906c026d414c752d3c0ba9481f425b24b29c67.zip |
Diffstat (limited to 'Plugins/Core/web_playerlist.lua')
-rw-r--r-- | Plugins/Core/web_playerlist.lua | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Plugins/Core/web_playerlist.lua b/Plugins/Core/web_playerlist.lua deleted file mode 100644 index b7e48cc3f..000000000 --- a/Plugins/Core/web_playerlist.lua +++ /dev/null @@ -1,36 +0,0 @@ -function HandleRequest_PlayerList( Request )
- local World = cRoot:Get():GetDefaultWorld()
- local Content = ""
-
- if( Request.Params["playerlist-kick"] ~= nil ) then
- local KickPlayerName = Request.Params["playerlist-kick"]
- local Player = World:GetPlayer( KickPlayerName )
- if( Player == nil ) then
- Content = Content .. "<p>Could not find player " .. KickPlayerName .. " !</p>"
- elseif( Player:GetName() == KickPlayerName ) then
- Player:GetClientHandle():Kick("You were kicked from the game!")
- Content = Content .. "<p>" .. KickPlayerName .. " has been kicked from the game!</p>"
- end
- end
-
- Content = Content .. "<p>Connected Players: <b>" .. World:GetNumPlayers() .. "</b></p>"
- Content = Content .. "<table>"
-
- local PlayerNum = 0
- local AddPlayerToTable = function( Player )
- PlayerNum = PlayerNum + 1
- Content = Content .. "<tr>"
- Content = Content .. "<td style='width: 10px;'>" .. PlayerNum .. ".</td>"
- Content = Content .. "<td>" .. Player:GetName() .. "</td>"
- Content = Content .. "<td><a href='?playerlist-kick=" .. Player:GetName() .. "'>Kick</a></td>"
- Content = Content .. "</tr>"
- end
- World:ForEachPlayer( AddPlayerToTable )
-
- if( PlayerNum == 0 ) then
- Content = Content .. "<tr><td>None</td></tr>"
- end
- Content = Content .. "</table>"
- Content = Content .. "<br>"
- return Content
-end
\ No newline at end of file |