Recent content by Lynph

  1. Lynph

    Spectator List

    void Misc::SpectatorList() { if (!g_EngineClient->IsInGame() || !g_LocalPlayer) return; std::string spectators; for (int i = 0; i < g_EngineClient->GetMaxClients(); i++) { C_BasePlayer* entity = C_BasePlayer::GetPlayerByIndex(i); if (!entity)...
  2. Lynph

    AutoStrafe for Indigo

    if (Settings::Misc::misc_AutoStrafe && !(g_pPlayers->GetLocal()->iFlags & FL_ONGROUND) && !on_ladder && !noclip && !spectate && !in_water) { static float float1; static float float2; if (!(g_pPlayers->GetLocal()->iFlags & FL_ONGROUND)) { float2 = CSX::Utils::RandomIntRange(-440, -450); float1 =...
  3. Lynph

    Flash bar

    Hello :d Code bro) auto visuals::misc::flash_bar() const -> void { auto flash_alpha = ctx.player->m_flFlashDuration(); if( flash_alpha < 1.f ) return; ctx.w *= ( flash_alpha / 255.f ); render::get().filled_rect( Color(10, 10, 10,220), ctx.x - 1, ctx.y + ctx.h + 2, ctx.w +...
  4. Lynph

    NoScope with Lines

    Hook function DrawSetColor - 15 index in ISurface, in argument int r, int g, int b, int a It's code drop void __stdcall Hooks::DrawSetColor(int r, int g, int b, int a) { static auto oDrawSetColor = pVGuiSurfaceHook.get_original<DrawSetColor_t>(index::DrawSetColor); const auto ret_addr =...
  5. Lynph

    Interception Legit configuration

    Link - https://anonfile.com/BcQcF6tdn8/Lynph_private_ini
  6. Lynph

    ImGui Flags

    ImGui flags ImGuiWindowFlags_NoTitleBar - removing title bar. ImGuiWindowFlags_NoResize - no resize window. ImGuiWindowFlags_NoMove - no move window. ImGuiWindowFlags_NoScrollbar - no scrollbar window. ImGuiWindowFlags_NoCollapse - no collapse window. ImGuiWindowFlags_NoScrollWithMouse - no...
Top