From aae46468c77f47a88664172ceb2c3d8bc2aa08a4 Mon Sep 17 00:00:00 2001 From: "nielsbreu@gmail.com" Date: Sun, 24 Mar 2013 18:41:19 +0000 Subject: Added a /toggledownfall command that toggles the weather. changed back the stop.lua git-svn-id: http://mc-server.googlecode.com/svn/trunk@1312 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- MCServer/Plugins/Core/main.lua | 1 + MCServer/Plugins/Core/stop.lua | 4 +--- MCServer/Plugins/Core/weather.lua | 10 ++++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 MCServer/Plugins/Core/weather.lua (limited to 'MCServer') diff --git a/MCServer/Plugins/Core/main.lua b/MCServer/Plugins/Core/main.lua index 7f595fcdf..2eb07b6fd 100644 --- a/MCServer/Plugins/Core/main.lua +++ b/MCServer/Plugins/Core/main.lua @@ -32,6 +32,7 @@ function Initialize(Plugin) PluginManager:AddHook(Plugin, cPluginManager.HOOK_CHUNK_GENERATING) PluginManager:AddHook(Plugin, cPluginManager.HOOK_PLAYER_MOVING) + PluginManager:BindCommand("/toggledownfall", "core.toggledownfall", HandleToggleDownfallCommand, " - Toggles the weather"); PluginManager:BindCommand("/back", "core.back", HandleBackCommand, " - Return to your last position"); PluginManager:BindCommand("/save-all", "core.save-all", HandleSaveAllCommand, " - Saves all your worlds"); PluginManager:BindCommand("/help", "core.help", HandleHelpCommand, " [Page] - Show available commands"); diff --git a/MCServer/Plugins/Core/stop.lua b/MCServer/Plugins/Core/stop.lua index 4b4cca3b6..0a06fc7d3 100644 --- a/MCServer/Plugins/Core/stop.lua +++ b/MCServer/Plugins/Core/stop.lua @@ -1,8 +1,6 @@ function HandleStopCommand( Split, Player ) Server = cRoot:Get():GetServer() - PluginManager = cRoot:Get():GetPluginManager() Server:SendMessage( cChatColor.Green .. "Stopping the server..." ) - PluginManager:ExecuteConsoleCommand("stop") - --cRoot:Get():ServerCommand("stop") + cRoot:Get():ServerCommand("stop") return true end \ No newline at end of file diff --git a/MCServer/Plugins/Core/weather.lua b/MCServer/Plugins/Core/weather.lua new file mode 100644 index 000000000..49cbaa079 --- /dev/null +++ b/MCServer/Plugins/Core/weather.lua @@ -0,0 +1,10 @@ +function HandleToggleDownfallCommand( Split, Player ) + World = Player:GetWorld() + if World:GetWeather() == 0 then + World:SetWeather(1) + else + World:SetWeather(0) + end + Player:SendMessage( cChatColor.Green .. "Weather toggled") + return true +end \ No newline at end of file -- cgit v1.2.3