What are the settings of Lightning DeathMatch?

Discussions about GameTypes
Post Reply
User avatar
Diablo
Experienced
Posts: 85
Joined: Fri Oct 14, 2022 5:01 pm
Personal rank: world's worst mapper
Contact:

What are the settings of Lightning DeathMatch?

Post by Diablo »

Hey all,

Just wanted to ask if anyone knows what settings are used for Lightning DM? I've taken the time to replay the Challenge section in the campaign (minus HyperBlast, or I'd always lose) I know game speed is sped up, but at what value?

Oh btw, if someone has made a Lightning DM mode already that already sets these settings, pls tell me.

-Diablo
"I am the Alpha and the Omega." -Xan Kriegor, 2341.
User avatar
Aspide
Skilled
Posts: 191
Joined: Wed Jun 09, 2021 12:13 am

Re: What are the settings of Lightning DeathMatch?

Post by Aspide »

Based on the code, Lightning DeathMatch multiplies the game speed by 1.25

Code: Select all

Level.TimeDilation = 1.25 * GameSpeed;
it also forces weapon stay:

Code: Select all

    ForEach AllActors(class'Weapon', W)
        W.SetWeaponStay();
Basically it makes the game slightly faster and forces weapon stay, The Corrupt believe this is enough to win the tournament, let's prove them wrong :tu:
Somewhere in Nevada...
User avatar
Diablo
Experienced
Posts: 85
Joined: Fri Oct 14, 2022 5:01 pm
Personal rank: world's worst mapper
Contact:

Re: What are the settings of Lightning DeathMatch?

Post by Diablo »

Aspide wrote: Tue Feb 28, 2023 1:05 pm Based on the code, Lightning DeathMatch multiplies the game speed by 1.25

Code: Select all

Level.TimeDilation = 1.25 * GameSpeed;
it also forces weapon stay:

Code: Select all

    ForEach AllActors(class'Weapon', W)
        W.SetWeaponStay();
Basically it makes the game slightly faster and forces weapon stay, The Corrupt believe this is enough to win the tournament, let's prove them wrong :tu:
nice, anyway is it possible to make a new DM mode that forces these changes?
"I am the Alpha and the Omega." -Xan Kriegor, 2341.
Post Reply