Remove shellmap script from d2k
This commit is contained in:
@@ -66,7 +66,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Red Alert Lua scripts", "Re
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dune 2000 Lua scripts", "Dune 2000 Lua scripts", "{06B1AE07-DDB0-4287-8700-A8CD9A0E652E}"
|
||||
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-01b\atreides01b.lua = mods\d2k\maps\atreides-01b\atreides01b.lua
|
||||
EndProjectSection
|
||||
|
||||
@@ -123,12 +123,9 @@ Rules:
|
||||
WormManager:
|
||||
Minimum: 1
|
||||
Maximum: 1
|
||||
LuaScript:
|
||||
Scripts: shellmap.lua
|
||||
MusicPlaylist:
|
||||
StartingMusic: options
|
||||
LoopStartingMusic: True
|
||||
GlobalLightingPaletteEffect:
|
||||
rockettower:
|
||||
Power:
|
||||
Amount: 100
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user