03e29802cd
Added limited world. Configurable through webadmin. Added a Manage server page in webadmin where you can reload/restart/stop the server. You can add players to groups with the webadmin. without the player have to relog first You can change someone's group in-game with a command, without the player have to relog first Hardcore mode Improved death messages git-svn-id: http://mc-server.googlecode.com/svn/trunk@1306 0a769ca7-a7f5-676a-18bf-c427514a06d6
25 lines
817 B
Lua
25 lines
817 B
Lua
function HandleRequest_ManageServer( Request )
|
|
local Content = ""
|
|
if( Request.PostParams["RestartServer"] ~= nil ) then
|
|
cRoot:Get():ServerCommand("restart")
|
|
elseif( Request.PostParams["ReloadServer"] ~= nil ) then
|
|
cRoot:Get():GetPluginManager():ReloadPlugins()
|
|
elseif( Request.PostParams["StopServer"] ~= nil ) then
|
|
cRoot:Get():ServerCommand("stop")
|
|
end
|
|
Content = Content .. [[
|
|
<form method="POST">]]
|
|
|
|
Content = Content .. [[<table>
|
|
<tr style="padding-top:5px;">
|
|
<td><input type="submit" value="Restart Server" name="RestartServer"> <br /> restart the server</td>
|
|
<td><input type="submit" value="Reload Server" name="ReloadServer"> <br /> reload the server</td>
|
|
<td><input type="submit" value="Stop Server" name="StopServer"> <br /> stop the server</td>
|
|
</tr>
|
|
</table>
|
|
|
|
]]
|
|
return Content
|
|
end
|
|
|