WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

CS:GO Sunset Mode (With Source Code)

inspectortrapget

Member
Member

inspectortrapget

Member
Member
Status
Offline
Joined
Mar 25, 2020
Messages
263
Reaction score
60
Some guys found a way to move a shadows.
It was implemented in one old Aimware LUA and now in Pandora V2.

6KNOJeu.jpg


C++:
g_Engine::g_EntityList->ForEachEntity([&](g_Engine::Entity_t *entity)
{
    if (entity->Networkable()->CClient()->m_ClassID != g_Engine::m_ClassID::CascadeLight)
        return;

        // m_CascadeLight.m_EnvLightShadowDir = netvars[ HASH("CCascadeLight->m_envLightShadowDirection") ].m_Offset;
    auto &direction = *SDK::Address_t(entity).SelfOffset( g_CTX->Offsets().m_CascadeLight.m_EnvLightShadowDir ).as<SDK::Vec3_t*>();

        /* set your custom sun pos here */
    const auto custom_dir = SDK::Angle_t(0.f, g_Engine::g_GlobalVars->m_RealTime, 0.f).Vectors();

    direction = SDK::Vec3_t( custom_dir.x(), custom_dir.y(), dir.z() );
}
);
Credits: iDesync
 
Top