Skip to content

Commit 37fa303

Browse files
committed
fix MAX_FOV cap for hl2mp, fix bhopping cap, change bhop speeds
1 parent 4e9d900 commit 37fa303

File tree

13 files changed

+125
-70
lines changed

13 files changed

+125
-70
lines changed

game/quiver/cfg/valve.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ stuffcmds
1515

1616
// display the startup level
1717
startupmenu
18-
map_background background01
18+
//map_background background01
1919

2020
sv_unlockedchapters 99

game/quiver/info_changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ Quiver Private Alpha 1.1.0 (WIP):
7272
- The Dragon's Fury now 100% crits vs players that just had their armor break, in return for 20 less max armor on the user.
7373
- The Dragon's Fury's unused pressure meter now shows up by default, allowing you to view its pressure when switching weapons.
7474
- Added additional repair cost rate attributes to weapons that add armor or improve armor durability.
75+
- Fine-tuned bhop jump speed.
76+
- Fixed bhop capping not applying properly.
7577
- Added the following Source SDK Pull Requests:
7678
- #1437: MvM: Fix Explosive Headshot working on invulnerable target
7779
- #1440: Treat being in background map as not in-game

game/quiver/scripts/playerclasses/demoman.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ PlayerClass
1212
"speed_max" "315"
1313
"health_max" "175"
1414
"armor_max" "100"
15-
"bhop_speed_boost" "0.085"
15+
"bhop_speed_boost" "0.1"
1616
"airspeed_cap_mult" "1.65"
1717

1818
//armor stats

game/quiver/scripts/playerclasses/engineer.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "50"
1515
"health_max" "125"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.095"
17+
"bhop_speed_boost" "0.2"
1818
"airspeed_cap_mult" "1.75"
1919

2020
//armor stats

game/quiver/scripts/playerclasses/heavyweapons.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "400"
1515
"health_max" "300"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.075"
17+
"bhop_speed_boost" "0.1"
1818
"airspeed_cap_mult" "1.5"
1919
"aimed_speed_mult" "0.50"
2020

game/quiver/scripts/playerclasses/medic.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "100"
1515
"health_max" "150"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.1"
17+
"bhop_speed_boost" "0.3"
1818
"airspeed_cap_mult" "1.85"
1919

2020
//armor stats

game/quiver/scripts/playerclasses/pyro.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "150"
1515
"health_max" "175"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.095"
17+
"bhop_speed_boost" "0.2"
1818
"airspeed_cap_mult" "1.75"
1919

2020
//armor stats

game/quiver/scripts/playerclasses/scout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "25"
1515
"health_max" "125"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.1"
17+
"bhop_speed_boost" "0.3"
1818
"airspeed_cap_mult" "1.95"
1919

2020
//armor stats

game/quiver/scripts/playerclasses/sniper.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "25"
1515
"health_max" "125"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.095"
17+
"bhop_speed_boost" "0.2"
1818
"airspeed_cap_mult" "1.75"
1919
"aimed_speed_mult" "0.34"
2020

game/quiver/scripts/playerclasses/soldier.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PlayerClass
1414
// "armor_max" "250"
1515
"health_max" "200"
1616
"armor_max" "100"
17-
"bhop_speed_boost" "0.085"
17+
"bhop_speed_boost" "0.1"
1818
"airspeed_cap_mult" "1.65"
1919

2020
//armor stats

0 commit comments

Comments
 (0)