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 .. [[
]] Content = Content .. [[

restart the server

reload the server

stop the server
]] return Content end