Skip to content

Commit

Permalink
Game settings changes
Browse files Browse the repository at this point in the history
Changed order of game settings

Solo score color is now always black
  • Loading branch information
Jbleezy committed Aug 18, 2018
1 parent 21b24a3 commit 7b3f0fb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,18 @@
* Combat settings: changed name of "USE EQUIPMENT" to "EQUIPMENT"
* Combat settings: changed name of "GROUND SUPPORT" to "PLACEABLE MINE"
* Option to change FOV (65-120 in intervals of 5)
* Option to change max FPS (60, 90, 120, 180, 240, 360, 500, 750, 1000, or unlimited)
* Option to show FPS on HUD
* Option to change max FPS
* Option to disable fog
* Option to add weapon cycle delay
* Option to disable character dialog (host only)
* Option to disable Mule Kick (host only, always disabled on Nacht, always enabled on Moon)
* Options to disable timer, zombie counter, zone names, and character names
* Option to enable or disable fog
* Options to enable or disable timer, zombie counter, zone names, and character names
* Option to enable or disable character dialog (host only)
* Option to enable or disable Mule Kick (host only, always disabled on Nacht, always enabled on Moon)
* Option to choose which room you start in on Verruckt (host only)
* Option to choose which perk you start with on No Man's Land (host only)
* Options to set which barriers in Five spawn room you want disabled (host only)
* Option to choose the initial box location on maps that have a random initial box location (host only)
* Option to choose which gamemode you want to play, including random which includes every gamemode except Survival
* Option to choose which gamemode to play, including random which includes every gamemode except Survival (host only)

## Weapons
* All bullet damage (except for shotguns) will now deal full damage through multiple enemies or thin walls
Expand Down Expand Up @@ -1104,4 +1104,4 @@
* **_SE2Dev_** - LinkerMod
* **_Nukem_** - LinkerMod
* **_DTZxPorter_** - Wraith
* **_Treyarch_** - Assets, source code, and an amazing base game
* **_Treyarch_** - Assets, source code, and an amazing base game
1 change: 1 addition & 0 deletions players/mods/Reimagined/config.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
seta asylum_start_room "random"
seta cg_fov_settings "90"
seta cg_ScoresColor_Zombie "0 0 0 0"
seta character_dialog "1"
seta com_maxfps "90"
seta hud_playernames_on "1"
Expand Down
15 changes: 10 additions & 5 deletions ui/options_game_pc.menu
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
setDvar asylum_start_room "random";
}

if(dvarString(cg_drawFPSLabels) == "1") // default setting
if(dvarString(cg_drawFPSLabels) != "0")
{
setDvar cg_drawFPSLabels 0;
}
Expand All @@ -42,6 +42,11 @@
setDvar cg_fov_settings 90;
}

if(dvarString(cg_ScoresColor_Zombie) != "0 0 0 0")
{
setDvar cg_ScoresColor_Zombie "0 0 0 0";
}

if(dvarString(character_dialog) == "")
{
setDvar character_dialog 1;
Expand Down Expand Up @@ -212,13 +217,13 @@
//TODO - change 65.01 to 65 once game_mod fix is implemented
FRAME_CHOICE_DVARFLOATLIST_VIS( 24, "@PLATFORM_FOV_CAPS", cg_fov_settings, { "65" 65.01 "70" 70 "75" 75 "80" 80 "85" 85 "90" 90 "95" 95 "100" 100 "105" 105 "110" 110 "115" 115 "120" 120 }, ;, 1 )

FRAME_CHOICE_DVARSTRINGLIST_VIS( 25, "@REIMAGINED_SHOW_FPS", cg_drawFPS, { "@MENU_YES_CAPS"; "Simple"; "@MENU_NO_CAPS"; "Off" }, ;, 1)
FRAME_CHOICE_DVARFLOATLIST_VIS( 25, "@REIMAGINED_MAX_FPS", com_maxfps, { "60" 60 "90" 90 "120" 120 "180" 180 "240" 240 "360" 360 "500" 500 "750" 750 "1000" 1000 "@MPUI_RULES_UNLIMITED_CAPS" 0 }, ;, 1 )

FRAME_CHOICE_DVARFLOATLIST_VIS( 26, "@REIMAGINED_MAX_FPS", com_maxfps, { "60" 60 "90" 90 "120" 120 "180" 180 "240" 240 "360" 360 "500" 500 "750" 750 "1000" 1000 "@MPUI_RULES_UNLIMITED_CAPS" 0 }, ;, 1 )
FRAME_CHOICE_DVARSTRINGLIST_VIS( 26, "@REIMAGINED_SHOW_FPS", cg_drawFPS, { "@MENU_YES_CAPS"; "Simple"; "@MENU_NO_CAPS"; "Off" }, ;, 1)

FRAME_CHOICE_DVARYESNO_VIS( 27, "@REIMAGINED_FOG", r_fog_settings, ;, 1) //setdvar r_fog dvarbool("r_fog_settings")
FRAME_CHOICE_DVARFLOATLIST_VIS( 27, "@REIMAGINED_WEAPON_CYCLE_DELAY", cg_weaponCycleDelay, { "@MENU_YES_CAPS" 100 "@MENU_NO_CAPS" 0 }, ;, 1)

FRAME_CHOICE_DVARFLOATLIST_VIS( 28, "@REIMAGINED_WEAPON_CYCLE_DELAY", cg_weaponCycleDelay, { "@MENU_YES_CAPS" 100 "@MENU_NO_CAPS" 0 }, ;, 1)
FRAME_CHOICE_DVARYESNO_VIS( 28, "@REIMAGINED_FOG", r_fog_settings, ;, 1) //setdvar r_fog dvarbool("r_fog_settings")

#undef CHOICE_TEXT_COLOR_HL
#define CHOICE_TEXT_COLOR_HL 0 0 0 1
Expand Down

0 comments on commit 7b3f0fb

Please sign in to comment.