From 70d2f4855b29e7fbdd75f2376eea6d8453794f2b Mon Sep 17 00:00:00 2001 From: s1lent Date: Wed, 5 Jun 2019 18:57:38 +0700 Subject: [PATCH] Add description for new cvars mp_scoreboard_showhealth/mp_scoreboard_showmoney --- README.md | 2 ++ dist/game.cfg | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/README.md b/README.md index 30b2bc1a..4247ee5b 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,8 @@ Archive's bin directory contains 2 subdirectories, 'bugfixed' and 'pure' | mp_kill_filled_spawn | 1 | 0 | 1 | Kill the player in filled spawn before spawning some one else (Prevents players stucking in each other).
Only disable this if you have semiclip or other plugins that prevents stucking.
`0` disabled
`1` enabled | | mp_allow_point_servercommand | 0 | 0 | 1 | Allow use of point_servercommand entities in map.
`0` disallow
`1` allow
`NOTE`: Potentially dangerous for untrusted maps.| | mp_hullbounds_sets | 1 | 0 | 1 | Sets mins/maxs hull bounds for the player.
`0` disabled
`1` enabled | +| mp_scoreboard_showhealth | 3 | 0 | 5 | Show `HP` field into a scoreboard.
`0` don't send any update for `HP` field to any clients
`1` show only Terrorist `HP` field to all clients
`2` show only CT `HP` field to all clients
`3` show `HP` field to teammates
`4` show `HP` field to all clients
`5` show `HP` field to teammates and spectators | +| mp_scoreboard_showmoney | 3 | 0 | 5 | Show `Money` field into a scoreboard.
`0` don't send any update for `Money` field to any clients
`1` show only Terrorist `Money` field to all clients
`2` show only CT `Money` field to all clients
`3` show `Money` field to teammates
`4` show `Money` field to all clients
`5` show `Money` field to teammates and spectators | ## How to install zBot for CS 1.6? * Extract all the files from an [archive](regamedll/extra/zBot/bot_profiles.zip?raw=true) diff --git a/dist/game.cfg b/dist/game.cfg index 22af565e..5f299c5b 100644 --- a/dist/game.cfg +++ b/dist/game.cfg @@ -213,3 +213,23 @@ mp_allow_point_servercommand "0" // 1 - enabled (sets gamedll) // Default value: "1" mp_hullbounds_sets "1" + +// Show 'HP' field into a scoreboard +// 0 - don't send any update for 'HP' field to any clients +// 1 - show only Terrorist 'HP' field to all clients +// 2 - show only CT 'HP' field to all clients +// 3 - show 'HP' field to teammates +// 4 - show 'HP' field to all clients +// 5 - show 'HP' field to teammates and spectators +// Default value: "3" +mp_scoreboard_showhealth "3" + +// Show 'Money' field into a scoreboard +// 0 - don't send any update for 'Money' field to any clients +// 1 - show only Terrorist 'Money' field to all clients +// 2 - show only CT 'Money' field to all clients +// 3 - show 'Money' field to teammates +// 4 - show 'Money' field to all clients +// 5 - show 'Money' field to teammates and spectators +// Default value: "3" +mp_scoreboard_showmoney "3"