Files
cuberite-2a/MCServer/Plugins/Core/weather.lua
T

34 lines
756 B
Lua
Raw Normal View History

2013-08-11 16:00:53 +01:00
function HandleWeatherCommand(Split, Player)
if #Split ~= 2 then
SendMessage( Player, "Usage: /weather [clear/rain/thunder]" )
return true
2013-07-27 16:24:03 +01:00
end
2013-08-11 16:00:53 +01:00
if (Split[2] == "clear") then
Player:GetWorld():SetWeather(0)
SendMessageSuccess( Player, "Downfall stopped" )
elseif (Split[2] == "rain") then
Player:GetWorld():SetWeather(1)
SendMessageSuccess( Player, "Let it rain!" )
elseif (Split[2] == "thunder") then
Player:GetWorld():SetWeather(2)
SendMessageSuccess( Player, "Thundery showers activate!")
end
2013-08-11 19:43:26 +01:00
2013-07-27 16:24:03 +01:00
return true
2013-08-11 16:00:53 +01:00
end
2013-08-11 19:43:26 +01:00
function HandleDownfallCommand( Split, Player )
World = Player:GetWorld()
if World:GetWeather() == 0 then
World:SetWeather(1)
else
World:SetWeather(0)
end
SendMessageSuccess( Player, "Downfall Toggled")
end