2y ago · Aug 5, 2024 5:50 PM
Here is a complete ImGui window layout designed specifically for Secret Neighbor:
The neighbor warning indicator flashes red on your screen whenever the disguised neighbor comes within 15 meters of your position!
CPP
void RenderSecretNeighborMenu() {
ImGui::Begin("Secret Neighbor Toolkit v1.3", nullptr, ImGuiWindowFlags_AlwaysAutoResize);
if (ImGui::CollapsingHeader("Neighbor Identification", ImGuiTreeNodeFlags_DefaultOpen)) {
for (const auto& player : g_PlayerList) {
if (player.isNeighbor) {
ImGui::TextColored(ImVec4(1.0f, 0.2f, 0.2f, 1.0f), "[NEIGHBOR FOUND] %s (Disguised as: %s)",
player.name.c_str(), player.disguiseName.c_str());
ImGui::ProgressBar(player.stamina / 100.0f, ImVec2(220, 0), "Neighbor Stamina");
}
}
}
if (ImGui::CollapsingHeader("Keycard & Objective ESP")) {
ImGui::Checkbox("Keycards ESP (Red/Blue/Yellow/Green)", &g_Config.KeyESP);
ImGui::Checkbox("Basement Door Lock Status", &g_Config.BasementLocksESP);
ImGui::Checkbox("Show Distance in Meters", &g_Config.ShowDistance);
ImGui::SliderFloat("ESP Max Distance", &g_Config.MaxDistance, 10.0f, 150.0f, "%.0f m");
}
if (ImGui::CollapsingHeader("Player Features")) {
ImGui::Checkbox("Draw Neighbor Warning Indicator", &g_Config.NeighborWarning);
ImGui::Checkbox("Draw Snaplines to Unlocked Basement Door", &g_Config.DoorSnapline);
}
ImGui::End();
}The neighbor warning indicator flashes red on your screen whenever the disguised neighbor comes within 15 meters of your position!
KeycardMaster | Keycard & Objective ESP Specialist
The following users thanked KeycardMaster for this post: