From: terencehill Date: Mon, 12 Jun 2023 14:56:56 +0000 (+0200) Subject: bot_cmd: update usage example of the cc subcommand. Use the BOLD macro in 2 Survival... X-Git-Tag: xonotic-v0.8.6~13 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f2955b1bcdb1146d5441a76d60471a7fdc34acca;p=xonotic%2Fxonotic-data.pk3dir.git bot_cmd: update usage example of the cc subcommand. Use the BOLD macro in 2 Survival notifications --- diff --git a/qcsrc/common/notifications/all.inc b/qcsrc/common/notifications/all.inc index effed26d9..e2bb94aed 100644 --- a/qcsrc/common/notifications/all.inc +++ b/qcsrc/common/notifications/all.inc @@ -785,9 +785,9 @@ string multiteam_info_sprintf(string input, string teamname) { return ((input != MSG_CENTER_NOTIF(SUPERWEAPON_LOST, N_ENABLE, 0, 0, "", CPID_POWERUP, "0 0", _("^F2Superweapons have been lost"), "") MSG_CENTER_NOTIF(SUPERWEAPON_PICKUP, N_ENABLE, 0, 0, "", CPID_POWERUP, "0 0", _("^F2You now have a superweapon"), "") - MSG_CENTER_NOTIF(SURVIVAL_HUNTER, N_ENABLE, 0, 0, "", CPID_SURVIVAL, "5 0", strcat(BOLD_OPERATOR, _("^BGYou are a ^K1hunter^BG! Eliminate the survivor(s) without raising suspicion!")), "") + MSG_CENTER_NOTIF(SURVIVAL_HUNTER, N_ENABLE, 0, 0, "", CPID_SURVIVAL, "5 0", BOLD(_("^BGYou are a ^K1hunter^BG! Eliminate the survivor(s) without raising suspicion!")), "") MSG_CENTER_NOTIF(SURVIVAL_HUNTER_WIN, N_ENABLE, 0, 0, "", CPID_ROUND, "0 0", _("^K1Hunters^BG win the round"), "") - MSG_CENTER_NOTIF(SURVIVAL_SURVIVOR, N_ENABLE, 0, 0, "", CPID_SURVIVAL, "5 0", strcat(BOLD_OPERATOR, _("^BGYou are a ^F1survivor^BG! Identify and eliminate the hunter(s)!")), "") + MSG_CENTER_NOTIF(SURVIVAL_SURVIVOR, N_ENABLE, 0, 0, "", CPID_SURVIVAL, "5 0", BOLD(_("^BGYou are a ^F1survivor^BG! Identify and eliminate the hunter(s)!")), "") MSG_CENTER_NOTIF(SURVIVAL_SURVIVOR_WIN, N_ENABLE, 0, 0, "", CPID_ROUND, "0 0", _("^F1Survivors^BG win the round"), "") MULTITEAM_CENTER(TEAMCHANGE, N_ENABLE, 0, 1, "", CPID_TEAMCHANGE, "1 f1", _("^K1Changing to ^TC^TT^K1 in ^COUNT"), "", NAME) diff --git a/qcsrc/server/bot/default/scripting.qc b/qcsrc/server/bot/default/scripting.qc index 5a1333065..4ad6246e6 100644 --- a/qcsrc/server/bot/default/scripting.qc +++ b/qcsrc/server/bot/default/scripting.qc @@ -390,7 +390,7 @@ void bot_cmdhelp(string scmd) desc = "Resets the goal stack"; break; case BOT_CMD_CC: - desc = "Execute client command. Examples: cc \"say something\"; cc god; cc \"name newnickname\"; cc kill;"; + desc = "Execute client command. Examples: cc say something; cc god; cc name newnickname; cc kill;"; break; case BOT_CMD_IF: desc = "Perform simple conditional execution.\n" diff --git a/qcsrc/server/command/sv_cmd.qc b/qcsrc/server/command/sv_cmd.qc index 61861acbb..f05edfcb5 100644 --- a/qcsrc/server/command/sv_cmd.qc +++ b/qcsrc/server/command/sv_cmd.qc @@ -465,7 +465,7 @@ void GameCommand_bot_cmd(int request, int argc, string command) LOG_HELP(" can be either the name of the bot or a progressive number (not the entity number!)"); LOG_HELP(" can also be '*' or 'all' to allow sending the command to all the bots"); LOG_HELP(" For full list of commands, see bot_cmd help []."); - LOG_HELP("Examples: sv_cmd bot_cmd 1 cc \"say something\""); + LOG_HELP("Examples: sv_cmd bot_cmd 1 cc say something"); LOG_HELP(" sv_cmd bot_cmd 1 presskey jump"); LOG_HELP(" sv_cmd bot_cmd * pause"); return;