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

@@ -66,7 +66,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Red Alert Lua scripts", "Re
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dune 2000 Lua scripts", "Dune 2000 Lua scripts", "{06B1AE07-DDB0-4287-8700-A8CD9A0E652E}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dune 2000 Lua scripts", "Dune 2000 Lua scripts", "{06B1AE07-DDB0-4287-8700-A8CD9A0E652E}"
ProjectSection(SolutionItems) = preProject ProjectSection(SolutionItems) = preProject
mods\d2k\maps\shellmap\shellmap.lua = mods\d2k\maps\shellmap\shellmap.lua
mods\d2k\maps\atreides-01a\atreides01a.lua = mods\d2k\maps\atreides-01a\atreides01a.lua mods\d2k\maps\atreides-01a\atreides01a.lua = mods\d2k\maps\atreides-01a\atreides01a.lua
mods\d2k\maps\atreides-01b\atreides01b.lua = mods\d2k\maps\atreides-01b\atreides01b.lua mods\d2k\maps\atreides-01b\atreides01b.lua = mods\d2k\maps\atreides-01b\atreides01b.lua
EndProjectSection EndProjectSection

View File

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