if (Config.ESPMENU.LootBox)

if (Config.ESPMENU.LootBox)      {                             if (Actor->IsA(APickUpListWrapperActor::StaticClass())) {                                 auto LootBox = (APickUpListWrapperActor *) Actor;                                 auto RootComponent = Actor->RootComponent;                                 if (!RootComponent)                                     continue;                                 float Distance = LootBox->GetDistanceTo(localPlayer) / 100.f;                                 FVector2D lootboxPos;         if (Config.Chiiamoy.LootBox) {                                     FVector Hunt;                             Hunt.X = 70.0f;                             Hunt.Y = 70.0f; // Front                             Hunt.Z = 35.0f; // Height                                 Box3D(draw, LootBox->K2_GetActorLocation(), Hunt, IM_COL32(255, 255, 0, 255));                                       }                                 if (W2S(LootBox->K2_GetActorLocation(), &lootboxPos)) {                                     std::string s = ICON_FA_ARCHIVE"";                                     s += " [";                                     s += std::to_string((int) Distance);                                     s += "M]";                                     draw->AddText(NULL, ((float) density / 15.0f),                                                   {lootboxPos.X, lootboxPos.Y},                                                   IM_COL32(255, 000, 000, 255), s.c_str());                                 }                             }                         }

相关推荐

封面图片

if (Config.Chiiamoy.Vehicle)

if (Config.Chiiamoy.Vehicle)         {                             if (Actors[i]->IsA(ASTExtraVehicleBase::StaticClass())) {                                 auto Vehicle = (ASTExtraVehicleBase *) Actors[i];                                 if (!Vehicle->Mesh)                                     continue;                                 float Distance = Vehicle->GetDistanceTo(localPlayer) / 20.f;                                 FVector2D vehiclePos;                                                                if (Config.Chiiamoy.Vehicle) {                                     FVector Hunt;                             Hunt.X = 350.0f;                             Hunt.Y = 350.0f; // Front                             Hunt.Z = 350.0f; // Height                                 Box3D(draw, Vehicle->K2_GetActorLocation(), Hunt, IM_COL32(255, 255, 255, 255));                                       }                                 if (W2S(Vehicle->K2_GetActorLocation(), &vehiclePos)) {                                     std::string s = GetVehicleName(Vehicle);                                     if (Config.Chiiamoy.Vehicle) {                                         s += " [";                                         s += std::to_string((int) Distance);                                         s += "m]";                                     }                                     draw->AddText(NULL, ((float) density / 25.0f), {vehiclePos.X, vehiclePos.Y}, ToColor(Config.ColorsESP.Vehicle), s.c_str());                                 }                             }                         } https://t.me/fpll_R

封面图片

g_LocalController = localCooller;

g_LocalController = localController; g_LocalPlayer = localPlayer; if (totalEnemies > 0 || totalBots > 0) { std::string s; s += " "; s += std::to_string((int)totalBots); s += "|"; s += std::to_string((int)totalEnemies); draw->AddRectFilled(ImVec2(glWidth / 2 - 80.f, 20), ImVec2(glWidth / 2 + 80.f, 80), IM_COL32(245, 0, 0, 80), 30.0f); draw->AddRect(ImVec2(glWidth / 2 - 80.f, 20), ImVec2(glWidth / 2 + 80.f, 80), IM_COL32(245, 0, 0, 255), 30.0f, 0,6.0f); draw->AddText(nullptr, ((float) density / 12.5f), ImVec2(glWidth / 2 - 50.f, 30), IM_COL32(255, 255, 255, 255), s.c_str()); }else{ std::string s; s += " "; s += std::to_string((int)totalBots); s += "|"; s += std::to_string((int)totalEnemies); draw->AddRectFilled(ImVec2(glWidth / 2 - 80.f, 20), ImVec2(glWidth / 2 + 80.f, 80), IM_COL32(0, 255, 0, 80), 30.0f); draw->AddRect(ImVec2(glWidth / 2 - 80.f, 20), ImVec2(glWidth / 2 + 80.f, 80), IM_COL32(0, 255, 0, 255), 30.0f, 0,6.0f); draw->AddText(nullptr, ((float) density / 12.5f), ImVec2(glWidth / 2 - 50.f, 30), IM_COL32(255, 255, 255, 255), s.c_str()); }

封面图片

g_LocalController = localCooller;

g_LocalController = localController; g_LocalPlayer = localPlayer; if (totalEnemies > 0 || totalBots > 0) { std::string s; if (totalEnemies + totalBots < 10) { s += "玩家"; s += std::to_string((int)totalEnemies); s += " | "; s += std::to_string((int)totalBots); s += " 人机"; } else { s += "玩家 "; s += std::to_string((int)totalEnemies); s += " | "; s += std::to_string((int)totalBots); s += " 人机"; } draw->AddRectFilled(ImVec2(glWidth / 2 - 80, 50), ImVec2(glWidth / 2 + 80, 120), IM_COL32(255, 165, 0, 120), 15.0f); draw->AddRect(ImVec2(glWidth / 2 - 80, 50), ImVec2(glWidth / 2 + 80, 120), IM_COL32(255, 165, 0, 80), 15.0f, 0, 2.5f); draw->AddText(nullptr, ((float)density / 16.5f), ImVec2(glWidth / 2 - 71, 70), IM_COL32(0, 255, 232, 255), s.c_str()); } else { std::string s; s += "玩家 "; s += std::to_string((int)totalEnemies); s += " | "; s += std::to_string((int)totalBots); s += " 人机"; draw->AddRectFilled(ImVec2(glWidth / 2 - 80, 50), ImVec2(glWidth / 2 + 80, 120), IM_COL32(255, 158, 212, 255), 15.0f); draw->AddRect(ImVec2(glWidth / 2 - 80, 50), ImVec2(glWidth / 2 + 80, 120), IM_COL32(255, 255, 255, 130), 15.0f, 0, 2.5f); draw->AddText(nullptr, ((float)density / 16.5f), ImVec2(glWidth / 2 - 58, 70), IM_COL32(0, 255, 232, 255), s.c_str()); }

封面图片

g_LocalController = localCooller;

g_LocalController = localController; g_LocalPlayer = localPlayer; for (int i = 0; i < Actors.size(); i++) { auto Actor = Actors[i]; if (isObjectInvalid(Actor)) continue; if (Actor->IsA(ASTExtraPlayerCharacter::StaticClass())) { long PlayerBoxClrCf = IM_COL32(0, 255, 0, 255); long PlayerBoxClrCf2 = IM_COL32(0, 255, 0, 25); auto Player = (ASTExtraPlayerCharacter *) Actor; if (!localController->LineOfSightTo(Player, {0, 0, 0}, true)) { PlayerBoxClrCf = IM_COL32(255, 0, 0, 255); PlayerBoxClrCf2 = IM_COL32(255, 0, 0, 25); } if (totalEnemies > 0 || totalBots > 0) { std::string s; if (totalEnemies > 0) { s = "Enem"; if (totalEnemies > 1) s += "ies"; else s += "y"; s += " Nearby:"; s += std::to_string(totalEnemies); if (totalBots > 0) s += ""; } if (totalBots) { s += "(Bots"; if (totalBots > 1) // s += "s"; s += ":"; s += std::to_string(totalBots); s += ")"; } auto HeadPos = Player->GetBonePos("Head", {}); ImVec2 HeadPosSC; auto textSize = ImGui::CalcTextSize2(s.c_str(), 0, s.size()); draw->AddText(nullptr, ((float) density / 11.4f), ImVec2(glWidth / 2 - 50.f, 50), PlayerBoxClrCf, s.c_str()); draw->AddText(nullptr, ((float) density / 11.4f), ImVec2(glWidth / 2 - 50.f, 50), PlayerBoxClrCf, s.c_str()); } fps.update(); }} المصدر https://t.me/fpll_R

封面图片

if (Config.PlayerESP.Visible) {

if (Config.PlayerESP.Visible) { if (!localController->LineOfSightTo(Actor, {0, 0, 0}, true)) { }else{ draw->AddText(NULL, ((float) density / 7.0f),{(float) glWidth / 4 + glWidth / 40,500},IM_COL32(255, 000, 000, 155), "有人正在瞄着你呢"); draw->AddLine({(float) glWidth / 2, 358}, HeadPosSC, PlayerBoxClrCf,2.0f); } } 敌人露出提示 UI (推荐没有掩体变色的兄弟使用)

封面图片

if (totalEnemies + totalBots > 0) {

if (totalEnemies + totalBots > 0) {             std::string s;             if (totalEnemies + totalBots < 10)                 s += "     ";             else s += "    ";             s += std::to_string((int) totalEnemies + totalBots);             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddRectFilled(ImVec2(glWidth / 2 - 60, 50), ImVec2(glWidth / 2 + 60, 90), IM_COL32(255, 255, 255, 255));             draw->AddText(nullptr, ((float) density / 12.5f), ImVec2(glWidth / 2 - 50.f, 50), IM_COL32(1, 1, 1, 255), s.c_str());         } {                                       draw->AddText(NULL, ((float) density / 12.5f), ImVec2(glWidth / 2 - 250.f, 15), IM_COL32(255, 0, 0, 255),"TELEGRAM:https://t.me/fpll_R                                                        ");                             draw->AddText(NULL, ((float) density / 12.5f), ImVec2(glWidth / 2 - 250.f, 15), IM_COL32(255, 0, 0, 255),"TELEGRAM:https://t.me/fpll_R                                                      ");                                     draw->AddText(NULL, ((float) density / 12.5f), ImVec2(glWidth / 2 - 250.f, 15), IM_COL32(255, 0, 0, 255),"TELEGRAM:https://t.me/fpll_R                                                       ");                             draw->AddText(NULL, ((float) density / 12.5f), ImVec2(glWidth / 2 - 250.f, 15), IM_COL32(255, 0, 0, 255),"TELEGRAM:https://t.me/fpll_R                                                        ");                                  } المصدر https://t.me/fpll_R

🔍 发送关键词来寻找群组、频道或视频。

启动SOSO机器人