Skip to content

Commit f257bd9

Browse files
committed
improve map backgrounds/add music to background maps/add background map
1 parent df65f38 commit f257bd9

File tree

18 files changed

+224
-914
lines changed

18 files changed

+224
-914
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,12 @@ game/bin/x64/glview.exe
548548
game/bin/x64/motionmapper.exe
549549
game/bin/x64/height2normal.exe
550550
game/bin/x64/qc_eyes.exe
551+
game/*/cfg/user.scr
552+
game/*/download/*
553+
game/*/downloadlists/*
554+
game/*/maps/graphs/*
551555

552556
bds_content/**/mapsrc/*.bsp
553557
bds_content/**/mapsrc/*.prt
554558
bds_content/**/mapsrc/*.vmx
559+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This base is specific to multiplayer mod projects.
2727
- Implemented bhopping functionality that can be enabled or disabled by server owners in TF2 and HL2DM.
2828
- Multiplayer NPC support with the BDSBASE_NPC preprocessor definition.
2929
- Various optional preprocessor definitions for changing TF2's behavior.
30+
- Menu music in map backgrounds with adjustable volume and mix volume.
3031

3132
## Options/Preprocessor Definitions
3233
These options are meant to be added to the VPC files (client and server) of the mod you wish to modify.

game/mod_tf/cfg/user_default.scr

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -636,6 +636,30 @@ DESCRIPTION INFO_OPTIONS
636636
{ CATEGORY }
637637
}
638638

639+
"cl_backgroundmap_music"
640+
{
641+
"#TF_backgroundmap_music"
642+
"#Tooltip_backgroundmap_music"
643+
{ BOOL }
644+
{ "1" }
645+
}
646+
647+
"cl_backgroundmap_music_volume"
648+
{
649+
"#TF_backgroundmap_music_vol"
650+
"#Tooltip_backgroundmap_music_vol"
651+
{ SLIDER 0 1 }
652+
{ "1.0" }
653+
}
654+
655+
"cl_backgroundmap_music_duck"
656+
{
657+
"#TF_backgroundmap_music_mix"
658+
"#Tooltip_backgroundmap_music_mix"
659+
{ SLIDER 0 1 }
660+
{ "0.65" }
661+
}
662+
639663
"hud_takesshots"
640664
{
641665
"#game_takesshots"
1.01 KB
Binary file not shown.

game/quiver/cfg/settings_default.scr

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,13 @@ DESCRIPTION SERVER_OPTIONS
8787
{
8888
"#TF_MaxRounds"
8989
{ NUMBER 0 -1 }
90-
{ "3" }
90+
{ "0" }
91+
}
92+
93+
"qf_tdm_enable"
94+
{
95+
"#Quiver_AllowTDM"
96+
{ BOOL }
97+
{ "1" }
9198
}
9299
}

0 commit comments

Comments
 (0)