diff --git a/bin/config_sample/command_extensions.ini b/bin/config_sample/command_extensions.ini index d8933e3..dd9ce14 100644 --- a/bin/config_sample/command_extensions.ini +++ b/bin/config_sample/command_extensions.ini @@ -80,4 +80,7 @@ aliases = ignorebglist aliases = togglewtce [toggle_shouts] -aliases = toggleshouts \ No newline at end of file +aliases = toggleshouts + +[kick_other] +aliases = kickother \ No newline at end of file diff --git a/bin/config_sample/text/commandhelp.json b/bin/config_sample/text/commandhelp.json index 4f5f0a0..1d148ac 100644 --- a/bin/config_sample/text/commandhelp.json +++ b/bin/config_sample/text/commandhelp.json @@ -673,5 +673,10 @@ "name":"clearcustom", "usage":"/clearcustom", "text":"Removes all custom songs from the area." + }, + { + "name":"kick_other", + "usage":"/kick_other", + "text":"Removes all multiclients of the user from the server." } ] diff --git a/core/include/aoclient.h b/core/include/aoclient.h index cfd6eba..320aa9b 100644 --- a/core/include/aoclient.h +++ b/core/include/aoclient.h @@ -1363,6 +1363,15 @@ class AOClient : public QObject */ void cmdClearCM(int argc, QStringList argv); + /** + * @brief Removes all multiclient instances of a client on the server, excluding the one using the command. + * + * @details This command gracefully removes all multiclients from the server, disconnecting them and freeing their used character. + * + * @iscommand + */ + void cmdKickOther(int argc, QStringList argv); + ///@} /** diff --git a/core/src/aoclient.cpp b/core/src/aoclient.cpp index 8455f6d..efa5286 100644 --- a/core/src/aoclient.cpp +++ b/core/src/aoclient.cpp @@ -145,7 +145,8 @@ const QMap AOClient::COMMANDS{ {"toggleroot", {{ACLRole::CM}, 0, &AOClient::cmdToggleRootlist}}, {"clearcustom", {{ACLRole::CM}, 0, &AOClient::cmdClearCustom}}, {"toggle_wtce", {{ACLRole::CM}, 0, &AOClient::cmdToggleWtce}}, - {"toggle_shouts", {{ACLRole::CM}, 0, &AOClient::cmdToggleShouts}}}; + {"toggle_shouts", {{ACLRole::CM}, 0, &AOClient::cmdToggleShouts}}, + {"kick_other", {{ACLRole::NONE}, 0, &AOClient::cmdKickOther}}}; void AOClient::clientDisconnected() { diff --git a/core/src/commands/moderation.cpp b/core/src/commands/moderation.cpp index a3e33a0..8216b56 100644 --- a/core/src/commands/moderation.cpp +++ b/core/src/commands/moderation.cpp @@ -630,3 +630,20 @@ void AOClient::cmdClearCM(int argc, QStringList argv) arup(ARUPType::CM, true); sendServerMessage("Removed all CMs from this area."); } + +void AOClient::cmdKickOther(int argc, QStringList argv) +{ + Q_UNUSED(argc); + Q_UNUSED(argv); + + int l_kick_counter = 0; + + const QList l_target_clients = server->getClientsByIpid(m_ipid); + for (AOClient *l_target_client : l_target_clients) { + if (l_target_client != this) { + l_target_client->m_socket->close(); + l_kick_counter++; + } + } + sendServerMessage("Kicked " + QString::number(l_kick_counter) + " multiclients from the server."); +}