diff --git a/core/include/aoclient.h b/core/include/aoclient.h index a857490..00d1a7a 100644 --- a/core/include/aoclient.h +++ b/core/include/aoclient.h @@ -1237,6 +1237,17 @@ class AOClient : public QObject { */ void cmdNotice(int argc, QStringList argv); + /** + * @brief Pops up a notice for all clients in the server with a given message. + * + * @details Unlike cmdNotice, this command will send its notice to every client connected to the server. + * + * @see #cmdNotice + * + * @iscommand + */ + void cmdNoticeGlobal(int argc, QStringList argv); + ///@} /** @@ -2090,6 +2101,7 @@ class AOClient : public QObject { {"ignorebglist", {ACLFlags.value("IGNORE_BGLIST"),0, &AOClient::cmdIgnoreBgList}}, {"ignore_bglist", {ACLFlags.value("IGNORE_BGLIST"),0, &AOClient::cmdIgnoreBgList}}, {"notice", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNotice}}, + {"noticeg", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNoticeGlobal}}, }; /** diff --git a/core/src/commands/moderation.cpp b/core/src/commands/moderation.cpp index d0b81e6..cf98fd8 100644 --- a/core/src/commands/moderation.cpp +++ b/core/src/commands/moderation.cpp @@ -520,5 +520,10 @@ void AOClient::cmdNotice(int argc, QStringList argv) QString message = "A moderator sent this notice:\n\n" + argv.join(" "); sendServerMessageArea(message); server->broadcast(AOPacket("BB", {message}), current_area); - +} +void AOClient::cmdNoticeGlobal(int argc, QStringList argv) +{ + QString message = "A moderator sent this server-wide notice:\n\n" + argv.join(" "); + sendServerBroadcast(message); + server->broadcast(AOPacket("BB", {message})); }