Skip to content

Commit

Permalink
Serious Sam mode fix medbot scaling, WaltonWare mode without a space
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Oct 27, 2023
1 parent 102c8c6 commit fd0c8d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DXRModules/DeusEx/Classes/DXRFlags.uc
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ function FlagsSettings SetDifficulty(int new_difficulty)
settings.ammo = (settings.ammo + 100) / 2;
settings.equipment *= 2;
settings.medkits = (settings.medkits + 100) / 2;
settings.medbots = (settings.medbots + 100) / 2;
settings.medbots *= 2;
settings.health = 200;
}
else if(IsSpeedrunMode()) {
Expand Down Expand Up @@ -648,7 +648,7 @@ static function string GameModeName(int gamemode)
case SpeedrunMode:
return "Speedrun Mode";
case WaltonWare:
return "Walton Ware";
return "WaltonWare";
}
//EnumOption("Kill Bob Page (Alpha)", 3, f.gamemode);
//EnumOption("How About Some Soy Food?", 6, f.gamemode);
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ If you don't know what Deus Ex Randomizer is, then here's our old trailer which
* Optionally randomize the song selections, with options to use songs from Unreal and Unreal Tournament
* Option for mirrored maps, with choice of what percentage of maps should be mirrored
* Randomize the types of weapon mods
* Randomize the types of attached grenade traps

## There are also settings for
* Crowd Control! Let your Twitch/YouTube/Discord/other viewers troll you or help you! https://crowdcontrol.live/guides/DeusEx
Expand All @@ -59,7 +60,7 @@ If you don't know what Deus Ex Randomizer is, then here's our old trailer which
* Zero Rando - great for first-time Deus Ex players to benefit from the bug fixes, QoL improvements, and balance changes we've made, without any randomization.
* Randomizer Lite - randomizes some things without interfering with the immersion and mood of the game. Great for players who haven't played Deus Ex in a long time, or if you're intimidated by the full Randomizer.
* Serious Sam mode - same as the normal game but with 10x as many enemies. The player has increased health and takes reduced damage to compensate.
* Walton Ware mode - Walton Ware mode: a game mode focused on quickly doing bingos and New Game+.
* WaltonWare mode - a game mode focused on quickly doing bingos and New Game+.
* Speedrun mode - speedrun with fewer resets while still being able to enjoy higher difficulties. And a built in splits viewers!
* Challenge mode loadouts! [(Wiki page)](https://github.com/Die4Ever/deus-ex-randomizer/wiki/Loadouts)
* Stick With the Prod Pure means the only weapon you get is the stun prod (hint: throw a crate straight up into the air to break it)
Expand Down

0 comments on commit fd0c8d7

Please sign in to comment.