diff --git a/core/include/aoclient.h b/core/include/aoclient.h index 4a16167..a857490 100644 --- a/core/include/aoclient.h +++ b/core/include/aoclient.h @@ -231,6 +231,7 @@ class AOClient : public QObject { {"FORCE_CHARSELECT",1ULL << 13}, {"BYPASS_LOCKS", 1ULL << 14}, {"IGNORE_BGLIST", 1ULL << 15}, + {"SEND_NOTICE", 1ULL << 16}, {"SUPER", ~0ULL } }; @@ -1223,6 +1224,19 @@ class AOClient : public QObject { */ void cmdUpdateBan(int argc, QStringList argv); + /** + * @brief Pops up a notice for all clients in the targeted area with a given message. + * + * @details The only argument is the message to send. This command only works on clients with support for the BB#% + * + * generic message box packet (i.e. Attorney Online versions 2.9 and up). To support earlier versions (as well as to make the message + * + * re-readable if a user clicks out of it too fast) the message will also be sent in OOC to all affected clients. + * + * @iscommand + */ + void cmdNotice(int argc, QStringList argv); + ///@} /** @@ -2074,7 +2088,8 @@ class AOClient : public QObject { {"update_ban", {ACLFlags.value("BAN"), 3, &AOClient::cmdUpdateBan}}, {"changepass", {ACLFlags.value("NONE"), 1, &AOClient::cmdChangePassword}}, {"ignorebglist", {ACLFlags.value("IGNORE_BGLIST"),0, &AOClient::cmdIgnoreBgList}}, - {"ignore_bglist", {ACLFlags.value("IGNORE_BGLIST"),0, &AOClient::cmdIgnoreBgList}} + {"ignore_bglist", {ACLFlags.value("IGNORE_BGLIST"),0, &AOClient::cmdIgnoreBgList}}, + {"notice", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNotice}}, }; /** diff --git a/core/src/commands/moderation.cpp b/core/src/commands/moderation.cpp index 699b803..d0b81e6 100644 --- a/core/src/commands/moderation.cpp +++ b/core/src/commands/moderation.cpp @@ -514,3 +514,11 @@ void AOClient::cmdUpdateBan(int argc, QStringList argv) } sendServerMessage("Ban updated."); } + +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); + +}