summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/save-reload-stop.lua
blob: c4aa030cb4ecc228852e351267ae92aa371b0dbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
function HandleSaveAllCommand( Split, Player )
	cRoot:Get():SaveAllChunks();
    local Server = cRoot:Get():GetServer()
	Server:SendMessage(cChatColor.Rose .. "[WARNING] " .. cChatColor.White .. "Saving all worlds!")
	return true;
end

function HandleStopCommand( Split, Player )
    Server = cRoot:Get():GetServer()
    local Server = cRoot:Get():GetServer()
	Server:SendMessage(cChatColor.Red .. "[WARNING] " .. cChatColor.White .. "Server is terminating!" )
	cRoot:Get():QueueExecuteConsoleCommand("stop")
	return true
end

function HandleReloadCommand( Split, Player )
    Server = cRoot:Get():GetServer()
    local Server = cRoot:Get():GetServer()
	Server:SendMessage(cChatColor.Rose .. "[WARNING] " .. cChatColor.White .. "Reloading all plugins!" )
	cRoot:Get():GetPluginManager():ReloadPlugins()
	return true
end