1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-29 16:40:18 -05:00

Encounter: update intro messages

This commit is contained in:
Jbleezy
2023-03-21 23:19:34 -07:00
parent 99b2b65063
commit a9aa42db1a

View File

@ -1502,35 +1502,35 @@ grief_intro_msg()
{
foreach (player in players)
{
player thread show_grief_hud_msg( "" + get_gamemode_winning_score() + " score to win the game!" );
player thread show_grief_hud_msg( "Gain " + get_gamemode_winning_score() + " score to win the game!" );
}
}
else if(level.scr_zm_ui_gametype_obj == "zsnr")
{
foreach (player in players)
{
player thread show_grief_hud_msg( "" + get_gamemode_winning_score() + " round wins to win the game!" );
player thread show_grief_hud_msg( "Win " + get_gamemode_winning_score() + " rounds to win the game!" );
}
}
else if(level.scr_zm_ui_gametype_obj == "zrace")
{
foreach (player in players)
{
player thread show_grief_hud_msg( "" + get_gamemode_winning_score() + " score to win the game!" );
player thread show_grief_hud_msg( "Gain " + get_gamemode_winning_score() + " score to win the game!" );
}
}
else if(level.scr_zm_ui_gametype_obj == "zcontainment")
{
foreach (player in players)
{
player thread show_grief_hud_msg( "" + get_gamemode_winning_score() + " score to win the game!" );
player thread show_grief_hud_msg( "Gain " + get_gamemode_winning_score() + " score to win the game!" );
}
}
else if(level.scr_zm_ui_gametype_obj == "zmeat")
{
foreach (player in players)
{
player thread show_grief_hud_msg( "" + get_gamemode_winning_score() + " score to win the game!" );
player thread show_grief_hud_msg( "Gain " + get_gamemode_winning_score() + " score to win the game!" );
}
}
}