Remove shellmap script from d2k

This commit is contained in:
Oliver Brakmann
2015-07-18 18:40:29 +02:00
parent a5f921e843
commit e4521c7e15
3 changed files with 0 additions and 30 deletions

View File

@@ -123,12 +123,9 @@ Rules:
WormManager:
Minimum: 1
Maximum: 1
LuaScript:
Scripts: shellmap.lua
MusicPlaylist:
StartingMusic: options
LoopStartingMusic: True
GlobalLightingPaletteEffect:
rockettower:
Power:
Amount: 100

View File

@@ -1,26 +0,0 @@
WorldLoaded = function()
red = 0.95
green = 0.85
blue = 1.25
ambient = 0.5
end
Tick = function()
if (red < 1.0) then
red = red + 0.001
end
if (green < 1.0) then
green = green + 0.001
end
if (blue > 1.0) then
blue = blue - 0.001
end
if (ambient < 1.0) then
ambient = ambient + 0.001
end
Effect.ChangeLighting(red, green, blue, ambient)
end