diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 054343c..0c721c4 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -319,15 +319,15 @@ void AnticheatMgr::BuildAndSendReportToIngameGameMasters(Player* player, ReportT float xDiff = lastPosition.GetPositionX() - position.GetPositionX(); float yDiff = lastPosition.GetPositionY() - position.GetPositionY(); float zDiff = lastPosition.GetPositionZ() - position.GetPositionZ(); - sWorld->SendGMText(LANG_ANTICHEAT_TELEPORT, playerName, playerName, latency, xDiff, yDiff, zDiff); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_TELEPORT, playerName, playerName, latency, xDiff, yDiff, zDiff); } else if (reportType == IGNORE_CONTROL_REPORT) { - sWorld->SendGMText(LANG_ANTICHEAT_IGNORECONTROL, playerName, latency); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_IGNORECONTROL, playerName, latency); } else { - sWorld->SendGMText(LANG_ANTICHEAT_ALERT, playerName, playerName, latency, reportName); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_ALERT, playerName, playerName, latency, reportName); } } } @@ -468,7 +468,7 @@ void AnticheatMgr::SpeedHackDetection(Player* player, MovementInfo movementInfo) if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 TIME MANIPULATION COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } timeDiff = 1; BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); @@ -488,7 +488,7 @@ void AnticheatMgr::SpeedHackDetection(Player* player, MovementInfo movementInfo) if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 TIME MANIPULATION COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } timeDiff = 1; BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); @@ -553,7 +553,7 @@ void AnticheatMgr::SpeedHackDetection(Player* player, MovementInfo movementInfo) if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 SPEED HACK COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); } @@ -613,7 +613,7 @@ void AnticheatMgr::FlyHackDetection(Player* player, MovementInfo movementInfo) if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 FLY HACK COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); } @@ -662,7 +662,7 @@ void AnticheatMgr::JumpHackDetection(Player* player, MovementInfo movementInfo, if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 JUMP HACK COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); } @@ -723,7 +723,7 @@ void AnticheatMgr::JumpHackDetection(Player* player, MovementInfo movementInfo, if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 ADVANCE JUMP HACK COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); } @@ -915,7 +915,7 @@ void AnticheatMgr::TeleportHackDetection(Player* player, MovementInfo movementIn std::string goXYZ = ".go xyz " + std::to_string(player->GetPositionX()) + " " + std::to_string(player->GetPositionY()) + " " + std::to_string(player->GetPositionZ() + 1.0f) + " " + std::to_string(player->GetMap()->GetId()) + " " + std::to_string(player->GetOrientation()); std::string goXYZ2 = ".go xyz " + std::to_string(opponent->GetPositionX()) + " " + std::to_string(opponent->GetPositionY()) + " " + std::to_string(opponent->GetPositionZ() + 1.0f) + " " + std::to_string(opponent->GetMap()->GetId()) + " " + std::to_string(opponent->GetOrientation()); uint32 latency2 = opponent->GetSession()->GetLatency(); - sWorld->SendGMText(LANG_ANTICHEAT_DUEL, player->GetName().c_str(), latency, opponent->GetName().c_str(), latency2); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_DUEL, player->GetName().c_str(), latency, opponent->GetName().c_str(), latency2); if (sConfigMgr->GetOption("Anticheat.WriteLog", true)) { @@ -951,7 +951,7 @@ void AnticheatMgr::TeleportHackDetection(Player* player, MovementInfo movementIn if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 TELEPORT COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } player->TeleportTo(player->GetMapId(), lastX, lastY, lastZ, player->GetOrientation()); BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); @@ -1155,7 +1155,7 @@ void AnticheatMgr::ZAxisHackDetection(Player* player, MovementInfo movementInfo) if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 IGNORE-Z HACK COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); } @@ -1287,7 +1287,7 @@ void AnticheatMgr::BGreport(Player* player, MovementInfo movementInfo) if (counter >= GetMinimumReportInChatThresholdConfigFromReportType(TELEPORT_HACK_REPORT) && counter <= GetMaximumReportInChatThresholdConfigFromReportType(TELEPORT_HACK_REPORT)) { uint32 latency = player->GetSession()->GetLatency(); - sWorld->SendGMText(LANG_ANTICHEAT_BG_EXPLOIT, player->GetName().c_str(), player->GetName().c_str(), latency); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_BG_EXPLOIT, player->GetName().c_str(), player->GetName().c_str(), latency); } } @@ -1327,7 +1327,7 @@ void AnticheatMgr::CheckStartPositions(Player* player, MovementInfo movementInfo if (sConfigMgr->GetOption("Anticheat.CM.ALERTCHAT", true)) { const char* str = "|cFFFFFC00 BG START SPOT COUNTER MEASURE ALERT"; - sWorld->SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); + ChatHandler(nullptr).SendGMText(LANG_ANTICHEAT_COUNTERMEASURE, str, player->GetName().c_str(), player->GetName().c_str()); } BuildReport(player, COUNTER_MEASURES_REPORT, movementInfo); player->TeleportTo(player->GetMapId(), startPos->GetPositionX(), startPos->GetPositionY(), startPos->GetPositionZ(), startPos->GetOrientation());