洛加斯特

已创建论坛回复

正在查看 15 个帖子:121-135 (共 160 个帖子)
  • 作者
    帖子
  • 回复至: 【已关闭】被腐化的迎风花任务完成后无Buff #1761
    洛加斯特
    管理员

    通过实际操作无此问题,请看看是不是自己的操作有误。
    通过净化被腐化的迎风花,净化后会有一个可以点击的物品(齿轮形状),点击开启后会获得”风花果”

    回复至: 【已解决】幻化问题 #1760
    洛加斯特
    管理员

    魔兽世界4.3版本是严格进行了武器限制的幻化,不过考虑到过于严格会降低幻化的乐趣,所以在测试服务器上做了调整,可以验证下。

    回复至: 【已解决】再次误封,望解封 #1758
    洛加斯特
    管理员

    反作弊代码会实时检测玩家的移动坐标,如果出现玩家移动操作后的坐标位置与实际移动的坐标位置不一致时(排除游泳、掉落等特殊情况下),就会认为出现异常情况。当前玩家容易出现被封的情况,估计与希利苏斯的风沙效果导致程序运行速度慢有关,建议降低游戏特效使得游戏运行顺畅,以防被再次封号 。
    void AnticheatMgr::IgnoreControlHackDetection(Player* player, MovementInfo movementInfo, uint32 opcode)
    {
    ObjectGuid key = player->GetGUID();

    float lastX = m_Players[key].GetLastMovementInfo().pos.GetPositionX();
    float newX = movementInfo.pos.GetPositionX();

    float lastY = m_Players[key].GetLastMovementInfo().pos.GetPositionY();
    float newY = movementInfo.pos.GetPositionY();

    if (!sConfigMgr->GetOption(“Anticheat.IgnoreControlHack”, true))
    return;

    if (m_Players[key].GetLastOpcode() == MSG_MOVE_JUMP)
    return;

    if (opcode == (MSG_MOVE_FALL_LAND))
    return;

    if (movementInfo.HasMovementFlag(MOVEMENTFLAG_FALLING | MOVEMENTFLAG_SWIMMING))
    return;

    uint32 latency = 0;
    latency = player->GetSession()->GetLatency() >= 400;

    if (player->HasAuraType(SPELL_AURA_MOD_ROOT) && !player->GetVehicle() && !latency)
    {
    bool unrestricted = newX != lastX || newY != lastY;
    if (unrestricted)
    {
    if (m_Players[key].GetTotalReports() > sConfigMgr->GetOption(“Anticheat.ReportsForIngameWarnings”, 70))
    {
    _alertFrequency = sConfigMgr->GetOption
    (“Anticheat.AlertFrequency”, 5);
    // So we dont divide by 0 by accident
    if (_alertFrequency < 1) _alertFrequency = 1; if (++_counter % _alertFrequency == 0) { // display warning at the center of the screen, hacky way? std::string str = "|cFFFFFC00[Playername:|cFF00FFFF[|cFF60FF00" + std::string(player->GetName().c_str()) + “|cFF00FFFF] Possible Ignore Control Hack Detected!”;
    WorldPacket data(SMSG_NOTIFICATION, (str.size() + 1));
    data << str; sWorld->SendGlobalGMMessage(&data);
    uint32 latency = 0;
    latency = player->GetSession()->GetLatency();
    // need better way to limit chat spam
    if (m_Players[key].GetTotalReports() >= sConfigMgr->GetOption
    (“Anticheat.ReportinChat.Min”, 70) && m_Players[key].GetTotalReports() <= sConfigMgr->GetOption(“Anticheat.ReportinChat.Max”, 80))
    {
    sWorld->SendGMText(LANG_ANTICHEAT_IGNORECONTROL, player->GetName().c_str(), latency);
    }
    _counter = 0;
    }
    }
    if (sConfigMgr->GetOption(“Anticheat.WriteLog”, true))
    {
    uint32 latency = 0;
    latency = player->GetSession()->GetLatency();
    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());
    LOG_INFO(“anticheat.module”, “AnticheatMgr:: Ignore Control – Hack detected player {} ({}) – Latency: {} ms – IP: {} – Cheat Flagged At: {}”, player->GetName(), player->GetGUID().ToString(), latency, player->GetSession()->GetRemoteAddress().c_str(), goXYZ);
    }

    BuildReport(player, IGNORE_CONTROL_REPORT);
    }
    }
    }

    回复至: 【已解决】再次误封,望解封 #1756
    洛加斯特
    管理员

    已查看日志并进行了坐标溯源,未发现2023-04-30 08:44:46~2023-04-30 11:54:23期间有异常,已做解封处理。
    $ grep 花木兰 anticheat_2023-04-30_04_09_56.log
    2023-04-30 08:44:46 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7452.739746 1431.966553 3.911690 1 6.091556
    2023-04-30 08:44:46 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7449.242676 1431.288208 3.315250 1 6.091556
    2023-04-30 08:47:07 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7680.990234 1195.973877 1.762898 1 2.356983
    2023-04-30 08:47:07 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7683.166992 1197.951782 1.623314 1 2.553333
    2023-04-30 08:47:59 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7659.352051 1247.115479 1.360751 1 6.080382
    2023-04-30 08:48:52 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 95 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7556.474121 1305.779663 5.220284 1 0.492273
    2023-04-30 08:54:41 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 0 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7579.438477 1315.620972 3.762192 1 0.374454
    2023-04-30 08:59:17 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 56 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7610.949219 1185.959351 5.174785 1 3.578876
    2023-04-30 09:00:09 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7666.942871 1250.188965 1.533566 1 0.366597
    2023-04-30 09:00:09 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7666.847168 1250.225708 1.525341 1 0.578654
    2023-04-30 09:00:09 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7666.761230 1250.281860 1.520004 1 0.723953
    2023-04-30 09:00:09 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7666.498047 1250.578979 1.462183 1 0.943864
    2023-04-30 09:04:31 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 80 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7507.261719 1249.547363 2.346101 1 3.500334
    2023-04-30 09:04:31 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 80 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7514.832031 1246.708740 6.519117 1 3.500334
    2023-04-30 09:04:41 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 80 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7555.691895 1233.819214 3.770584 1 3.500334
    2023-04-30 09:05:36 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 76 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7736.241211 1168.801514 2.412606 1 2.589272
    2023-04-30 09:05:36 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 76 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7743.296875 1167.156982 1.642952 1 2.447900
    2023-04-30 09:05:36 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 76 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7744.373047 1167.147339 1.598796 1 2.247623
    2023-04-30 09:06:47 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7622.031738 1274.597778 -1.371825 1 0.150612
    2023-04-30 09:06:47 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7618.802246 1275.087891 -1.331841 1 0.150612
    2023-04-30 09:07:36 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 66 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7559.686035 1322.499146 3.186207 1 0.570799
    2023-04-30 09:13:38 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7659.889648 1247.278076 1.371187 1 6.194242
    2023-04-30 09:18:26 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 0 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7559.170898 1393.359375 2.752516 1 3.818412
    2023-04-30 09:22:42 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 73 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7660.072754 1291.245605 -0.495506 1 0.397997
    2023-04-30 09:31:30 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 74 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7782.351074 1342.175293 -2.166297 1 0.060280
    2023-04-30 09:31:30 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 74 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7772.708496 1342.757202 -0.677293 1 0.060280
    2023-04-30 09:32:39 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 91 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7663.775391 1290.695068 0.493963 1 0.437271
    2023-04-30 09:33:28 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7565.246094 1318.008911 3.176311 1 0.291972
    2023-04-30 09:33:28 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7564.091797 1318.362671 3.040200 1 0.472614
    2023-04-30 09:33:28 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7563.995117 1318.412109 3.036353 1 0.661109
    2023-04-30 09:33:28 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7563.918945 1318.471436 3.029259 1 0.881021
    2023-04-30 09:33:28 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7563.853516 1318.550659 3.017270 1 1.144129
    2023-04-30 09:59:29 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 82 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7679.710938 1260.402222 0.266960 1 0.115258
    2023-04-30 10:06:53 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7668.537598 1270.682373 2.784304 1 0.284112
    2023-04-30 10:07:46 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 88 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7571.995117 1309.799683 4.444790 1 0.441191
    2023-04-30 10:08:51 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 79 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7514.865723 1332.026123 3.376246 1 0.405849
    2023-04-30 10:34:00 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 111 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7662.466309 1246.000610 2.003542 1 1.142433
    2023-04-30 10:40:16 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7668.519043 1290.656006 1.584822 1 0.372740
    2023-04-30 10:40:16 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7666.479980 1291.453369 0.942839 1 0.372740
    2023-04-30 10:41:36 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 84 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7681.903809 1291.730835 2.305626 1 3.239443
    2023-04-30 10:43:00 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7642.146973 1344.218750 0.467837 1 0.698682
    2023-04-30 10:43:00 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7639.789063 1346.199219 0.846584 1 0.698682
    2023-04-30 11:01:19 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 75 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7682.591797 1258.396973 0.022453 1 3.058797
    2023-04-30 11:01:29 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7695.257324 1258.613281 1.790098 1 2.819251
    2023-04-30 11:01:29 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7695.487793 1258.498169 1.794657 1 2.995965
    2023-04-30 11:01:29 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7695.720215 1258.325195 1.791955 1 3.153045
    2023-04-30 11:01:29 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7696.513184 1257.254639 1.646156 1 3.376884
    2023-04-30 11:03:05 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7562.768066 1302.326294 3.599443 1 0.419860
    2023-04-30 11:03:05 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 71 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7559.388672 1303.834961 4.362520 1 0.419860
    2023-04-30 11:09:27 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 69 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7714.479492 1174.522827 2.677327 1 2.882083
    2023-04-30 11:10:31 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 0 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7687.190430 1305.724365 -1.032216 1 0.251000
    2023-04-30 11:11:42 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 83 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7625.813965 1332.154785 3.368363 1 0.341318
    2023-04-30 11:11:42 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 83 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7622.872559 1333.199585 3.350438 1 0.341318
    2023-04-30 11:16:49 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 76 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7500.682129 1379.964966 5.394353 1 0.066426
    2023-04-30 11:16:58 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 82 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7493.832520 1379.860229 5.692483 1 3.883466
    2023-04-30 11:24:22 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7582.375000 1343.599121 3.943539 1 0.176380
    2023-04-30 11:24:41 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7560.398438 1352.645996 2.204579 1 0.345240
    2023-04-30 11:24:41 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7559.138672 1355.731323 1.607619 1 0.400218
    2023-04-30 11:25:01 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 104 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7517.828613 1404.554932 6.028474 1 6.255362
    2023-04-30 11:25:01 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 104 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7515.064941 1406.905640 6.038256 1 6.200384
    2023-04-30 11:27:44 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 87 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7584.003906 1169.713745 4.135768 1 4.001258
    2023-04-30 11:28:26 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 95 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7723.878906 1164.515503 4.375970 1 3.094123
    2023-04-30 11:29:09 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 85 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7677.396973 1285.829346 2.879906 1 0.380572
    2023-04-30 11:30:08 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 76 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7527.140625 1354.897827 0.230637 1 0.250981
    2023-04-30 11:45:47 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 69 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7669.334473 1250.197021 1.619463 1 6.278915
    2023-04-30 11:46:35 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 98 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7577.323242 1325.507935 2.079401 1 0.635828
    2023-04-30 11:46:35 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 98 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7574.466797 1327.616089 2.872365 1 0.635828
    2023-04-30 11:51:42 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 82 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7540.347656 1120.948486 2.194566 1 3.086275
    2023-04-30 11:52:22 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 74 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7672.995117 1189.954224 2.209937 1 2.878145
    2023-04-30 11:53:23 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 99 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7659.974609 1282.445190 0.679173 1 0.404139
    2023-04-30 11:54:23 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 97 ms – IP: 117.136.31.249 – Cheat Flagged At: .go xyz -7520.993164 1361.772949 0.086442 1 0.360939
    2023-04-30 11:54:23 INFO [anticheat.module] AnticheatMgr:: Reports reached assigned threshhold and counteracted by kicking player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725)
    2023-04-30 11:54:23 INFO [anticheat.module] AnticheatMgr:: Reports reached assigned threshhold and counteracted by banning player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725)

    回复至: 【已解决】误封,望解封 #1729
    洛加斯特
    管理员

    已做解封处理,检测日志显示存在玩家行为不受控的问题,请检查下客户端以及插件避免问题再次出现。
    2023-04-24 22:45:48 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 88 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7669.467773 1285.509155 2.419854 1 0.361826
    2023-04-24 22:45:58 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 88 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7665.251465 1285.365967 1.844280 1 3.546619
    2023-04-24 22:45:58 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 88 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7664.835938 1285.199707 1.802949 1 3.546619
    2023-04-24 22:46:45 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7528.317383 1365.340820 0.024285 1 5.898886
    2023-04-24 22:46:45 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7527.866211 1365.123291 0.024285 1 5.785003
    2023-04-24 22:46:46 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 72 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7527.528809 1364.912231 0.024285 1 5.596508
    2023-04-24 22:46:55 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 77 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7514.875000 1360.161499 0.022640 1 2.580575
    2023-04-24 22:46:55 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 77 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7513.257324 1359.145142 0.022640 1 2.580575
    2023-04-24 22:58:22 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 0 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7555.494629 1330.047607 3.767725 1 3.499481
    2023-04-24 22:58:54 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 86 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7584.050293 1308.339233 4.274260 1 4.901421
    2023-04-24 22:59:35 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 91 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7654.998047 1271.474121 1.010796 1 0.785929
    2023-04-24 22:59:35 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 91 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7652.719238 1273.755005 -0.202046 1 0.785929
    2023-04-24 23:07:49 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 70 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7665.807129 1299.992676 -1.134008 1 0.275424
    2023-04-24 23:07:57 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 70 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7661.147461 1302.164551 0.265030 1 0.244010
    2023-04-24 23:16:11 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 78 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7666.754883 1308.021240 1.197099 1 0.361821
    2023-04-24 23:16:20 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7659.557129 1312.751587 2.219578 1 3.829356
    2023-04-24 23:16:20 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 67 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7658.351563 1312.710327 2.213404 1 3.829356
    2023-04-24 23:20:05 INFO [anticheat.module] AnticheatMgr:: Ignore Control – Hack detected player 花木兰 (GUID Full: 0x00000000000006bd Type: Player Low: 1725) – Latency: 101 ms – IP: 223.104.66.63 – Cheat Flagged At: .go xyz -7563.483398 1353.771729 2.360641 1 0.452142

    回复至: 【已解决】误封,望解封 #1726
    洛加斯特
    管理员

    请找对应的人回帖担保

    回复至: 【已解决】幻化问题 #1658
    洛加斯特
    管理员

    已在正式服的积分商店上线了PVP装备的幻化样式

    回复至: 【已处理】怀疑多开挂机 影响平衡 #1653
    洛加斯特
    管理员

    经过实际查看取证,缺失存在战场挂机行为,予以封号4天荣誉清零处理

    洛加斯特
    管理员

    测试服务器上已经进行更新,请在测试服务器上验证下

    洛加斯特
    管理员

    已确认问题,PVP装备荣誉点数将参照开源社区中的BWL阶段进行更新

    回复至: 【已关闭】关于荣耀的问题 #1586
    洛加斯特
    管理员

    通过金币购买荣誉不是一个好的办法

    回复至: 【已复现】幻化BUG #1584
    洛加斯特
    管理员

    该问题已复现,但是在测试服务器上没有问题,所以需要在2023-4-16凌晨服务器维护时,备份正式服的数据库之后进行后续排查

    回复至: 【已解决】幻化问题 #1582
    洛加斯特
    管理员

    在测试服务器上已经实现了元帅类武器的幻化功能,该问题已初步解决,后续会择机在正式服上线。

    洛加斯特
    管理员

    请提供下装备具体的名称以及NFU数据库的链接地址

    回复至: 【已关闭】查下是不是用科技 #1554
    洛加斯特
    管理员

    需要提供详细的说明、截图

正在查看 15 个帖子:121-135 (共 160 个帖子)