add notice box command for moderators to get attention quickly

This commit is contained in:
in1tiate 2021-08-04 05:30:22 -05:00
parent af353b942e
commit e60f18554b
2 changed files with 24 additions and 1 deletions

View File

@ -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}},
};
/**

View File

@ -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);
}