1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Scoreboard: add correct game mode and map display names

Scoreboard: add current round number on Search & Rezurrect
Scoreboard: show team names on Encounter
Scoreboard: decrease team icon size from 128 to 116
This commit is contained in:
Jbleezy
2024-01-04 06:56:55 -08:00
parent 194de8d54a
commit 7efea2e32e
4 changed files with 1132 additions and 2 deletions

View File

@ -1001,7 +1001,6 @@ zone_hud()
hud.alpha = 0;
hud.color = (1, 1, 1);
hud.hidewheninmenu = 1;
hud.foreground = 1;
hud endon("death");

View File

@ -181,6 +181,7 @@ round_end(winner)
level notify("restart_round");
level.snr_round_number++;
setDvar("ui_round_number", level.snr_round_number);
level thread maps\mp\zombies\_zm_audio_announcer::leaderdialog("grief_restarted");

View File

@ -347,8 +347,10 @@ set_grief_vars()
level.pregame_minplayers = getDvarInt("party_minplayers");
level.noroundnumber = 1;
level.snr_round_number = 1;
setDvar("ui_round_number", level.snr_round_number);
level.noroundnumber = 1;
level.custom_end_screen = ::custom_end_screen;
level.game_module_onplayerconnect = ::grief_onplayerconnect;
level.game_mode_custom_onplayerdisconnect = ::grief_onplayerdisconnect;