Rename all "medium" difficulties to "normal"
This commit is contained in:
@@ -11,7 +11,7 @@ BeachheadTrigger =
|
|||||||
|
|
||||||
Difficulty = Map.LobbyOption("difficulty")
|
Difficulty = Map.LobbyOption("difficulty")
|
||||||
|
|
||||||
if Difficulty == "medium" then
|
if Difficulty == "normal" then
|
||||||
BaseRaidInterval = DateTime.Minutes(3)
|
BaseRaidInterval = DateTime.Minutes(3)
|
||||||
BaseFrontAttackInterval = DateTime.Minutes(3) + DateTime.Seconds(30)
|
BaseFrontAttackInterval = DateTime.Minutes(3) + DateTime.Seconds(30)
|
||||||
BaseRearAttackInterval = DateTime.Minutes(8)
|
BaseRearAttackInterval = DateTime.Minutes(8)
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ World:
|
|||||||
ID: difficulty
|
ID: difficulty
|
||||||
Label: Difficulty
|
Label: Difficulty
|
||||||
Values:
|
Values:
|
||||||
medium: Medium
|
normal: Normal
|
||||||
hard: Hard
|
hard: Hard
|
||||||
Default: medium
|
Default: normal
|
||||||
|
|
||||||
CAMERA:
|
CAMERA:
|
||||||
RevealsShroud:
|
RevealsShroud:
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ RunInitialActivities = function()
|
|||||||
Trigger.AfterDelay(DateTime.Minutes(1), ProduceInfantry)
|
Trigger.AfterDelay(DateTime.Minutes(1), ProduceInfantry)
|
||||||
Trigger.AfterDelay(DateTime.Minutes(2), ProduceArmor)
|
Trigger.AfterDelay(DateTime.Minutes(2), ProduceArmor)
|
||||||
|
|
||||||
if Map.LobbyOption("difficulty") == "hard" or Map.LobbyOption("difficulty") == "medium" then
|
if Map.LobbyOption("difficulty") == "hard" or Map.LobbyOption("difficulty") == "normal" then
|
||||||
Trigger.AfterDelay(DateTime.Seconds(5), ReinfInf)
|
Trigger.AfterDelay(DateTime.Seconds(5), ReinfInf)
|
||||||
end
|
end
|
||||||
Trigger.AfterDelay(DateTime.Minutes(1), ReinfInf)
|
Trigger.AfterDelay(DateTime.Minutes(1), ReinfInf)
|
||||||
@@ -95,7 +95,7 @@ Tick = function()
|
|||||||
RCheck = false
|
RCheck = false
|
||||||
if Map.LobbyOption("difficulty") == "hard" then
|
if Map.LobbyOption("difficulty") == "hard" then
|
||||||
Trigger.AfterDelay(DateTime.Seconds(150), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Seconds(150), ReinfArmor)
|
||||||
elseif Map.LobbyOption("difficulty") == "medium" then
|
elseif Map.LobbyOption("difficulty") == "normal" then
|
||||||
Trigger.AfterDelay(DateTime.Minutes(5), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Minutes(5), ReinfArmor)
|
||||||
else
|
else
|
||||||
Trigger.AfterDelay(DateTime.Minutes(8), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Minutes(8), ReinfArmor)
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ RunInitialActivities = function()
|
|||||||
ProduceInfantry()
|
ProduceInfantry()
|
||||||
Trigger.AfterDelay(DateTime.Minutes(2), ProduceShips)
|
Trigger.AfterDelay(DateTime.Minutes(2), ProduceShips)
|
||||||
|
|
||||||
if Map.LobbyOption("difficulty") == "hard" or Map.LobbyOption("difficulty") == "medium" then
|
if Map.LobbyOption("difficulty") == "hard" or Map.LobbyOption("difficulty") == "normal" then
|
||||||
Trigger.AfterDelay(DateTime.Seconds(25), ReinfInf)
|
Trigger.AfterDelay(DateTime.Seconds(25), ReinfInf)
|
||||||
end
|
end
|
||||||
Trigger.AfterDelay(DateTime.Minutes(2), ReinfInf)
|
Trigger.AfterDelay(DateTime.Minutes(2), ReinfInf)
|
||||||
@@ -172,7 +172,7 @@ Tick = function()
|
|||||||
RCheck = true
|
RCheck = true
|
||||||
if Map.LobbyOption("difficulty") == "easy" and ReinfCheck then
|
if Map.LobbyOption("difficulty") == "easy" and ReinfCheck then
|
||||||
Trigger.AfterDelay(DateTime.Minutes(6), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Minutes(6), ReinfArmor)
|
||||||
elseif Map.LobbyOption("difficulty") == "medium" then
|
elseif Map.LobbyOption("difficulty") == "normal" then
|
||||||
Trigger.AfterDelay(DateTime.Minutes(4), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Minutes(4), ReinfArmor)
|
||||||
else
|
else
|
||||||
Trigger.AfterDelay(DateTime.Minutes(3), ReinfArmor)
|
Trigger.AfterDelay(DateTime.Minutes(3), ReinfArmor)
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ World:
|
|||||||
Label: Difficulty
|
Label: Difficulty
|
||||||
Values:
|
Values:
|
||||||
easy: Easy
|
easy: Easy
|
||||||
medium: Medium
|
normal: Normal
|
||||||
hard: Hard
|
hard: Hard
|
||||||
Default: easy
|
Default: easy
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ if Difficulty == "easy" then
|
|||||||
DamageModifier = 0.5
|
DamageModifier = 0.5
|
||||||
LongBowReinforcements = { "heli", "heli" }
|
LongBowReinforcements = { "heli", "heli" }
|
||||||
ParadropArtillery = true
|
ParadropArtillery = true
|
||||||
elseif Difficulty == "medium" then
|
elseif Difficulty == "normal" then
|
||||||
AttackAtFrameIncrement = DateTime.Seconds(18)
|
AttackAtFrameIncrement = DateTime.Seconds(18)
|
||||||
AttackAtFrameIncrementInf = DateTime.Seconds(12)
|
AttackAtFrameIncrementInf = DateTime.Seconds(12)
|
||||||
TimerTicks = DateTime.Minutes(20)
|
TimerTicks = DateTime.Minutes(20)
|
||||||
|
|||||||
Reference in New Issue
Block a user