add global version of/notice
This commit is contained in:
parent
e60f18554b
commit
7b1845aa8d
@ -1237,6 +1237,17 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
void cmdNotice(int argc, QStringList argv);
|
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}},
|
{"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}},
|
{"notice", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNotice}},
|
||||||
|
{"noticeg", {ACLFlags.value("SEND_NOTICE"), 1, &AOClient::cmdNoticeGlobal}},
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -520,5 +520,10 @@ void AOClient::cmdNotice(int argc, QStringList argv)
|
|||||||
QString message = "A moderator sent this notice:\n\n" + argv.join(" ");
|
QString message = "A moderator sent this notice:\n\n" + argv.join(" ");
|
||||||
sendServerMessageArea(message);
|
sendServerMessageArea(message);
|
||||||
server->broadcast(AOPacket("BB", {message}), current_area);
|
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}));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user