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.

offsets

  1. byte_corvus

    Source Rust — Constexpr Prefab Name to ID Hashing

    Sick of manually updating your prefab headers every time Facepunch pushes a patch? Most of the guys over in the reversal scene are still sweating over prefab IDs when you can just hash them at compile time. This is a clean, constexpr MD5 implementation that allows you to convert a full prefab...
  2. byte_corvus

    Source Combat Arms Classic — Updated GameClass & Weapon Offsets

    The latest updates to Combat Arms Classic have shifted things around again. If you've been hitting walls with your old structures, here is the updated GameClass data. These are the raw offsets and member layouts needed to get your internals or externals back on track. Technical Overview This...
  3. byte_corvus

    Guide [Dump] Roblox Latest Offsets — DataModel, VisualEngine & ViewMatrix

    Time for another update. Just pulled the latest offsets from the current Roblox client build. These are the constants you need for any internal or external project, covering everything from basic local player properties to the core engine pointers. The Technical Meat This dump includes the...
  4. byte_corvus

    Question Rust — Internal il2cpp Runtime Offset Finding & Obfuscation

    Sick of manual dumping every time Facepunch pushes a minor patch? I'm currently trying to get my internal base to handle runtime auto-updates for the player ESP, but the obfuscation is hitting hard. When going internal, the goal is usually to stay dynamic to avoid the headache of updating...
  5. byte_corvus

    Source Apex Legends — Basic DMA Radar (MemProcFS .vmem)

    Anyone currently digging into DMA hardware knows that the MemProcFS API can be a bit of a wall for beginners. Found this approach that simplifies things by treating the memory space like a standard file system—effective if you want a chill radar without the risk of a rage-induced manual ban...
  6. byte_corvus

    Question Roblox Internal — TaskScheduler & lua_state Acquisition Logic

    Anyone still digging into Roblox internals since Bitdancer took over? Trying to map out a reliable execution flow for an internal project and looking for some verification on the job-loop logic. The Logic Flow The standard approach for a raw internal usually follows this chain: Inject DLL...
  7. byte_corvus

    Question Rust — Dumping Decryption Routines and Function Patterns

    The Wall: Moving Beyond Static Offsets Anyone else tired of their dumper hitting a wall because the game updated its decryption logic? We've all been there—you've got your offsets pouring in, but the moment you try to read a networked property, it's just garbled junk. In the current state of...
  8. byte_corvus

    Guide Rust projectileVelocityScale 0.00 — Bullet Prediction Logic

    Anyone digging into Rust's internal structures likely hit this wall. When your projectVelocityScale reads 0.00, it basically kills your bullet drop prediction because your multiplier logic goes to hell. The Issue If you are reading from heldEntity + 0x334, you are likely getting garbage data...
  9. byte_corvus

    Guide Crystal of Atlan — Reversing Stamina Offsets in Seria.exe

    Diving into the internals of Crystal of Atlan and looking at the stamina logic. It seems the game handles resource values via standard floating-point instructions in the main module. The Technical Breakdown Based on the dump from Seria.exe, the engine is using movss to pull the stamina value...
  10. byte_corvus

    Question PlanetSide 2 — Finding Offsets for DMA ESP (BattlEye Bypass & IDA)

    Been digging into PlanetSide 2 lately and hit the classic wall that most newcomers face when moving from simple memory scanning to actual development. If you're running a DMA setup with Metick's plugin for Cheat Engine, you've likely realized that scanning is the easy part—extracting clean...
  11. byte_corvus

    Guide [Dump] Rust Updated Offsets & Decryption — Entity List Chain & GCHandle

    Facepunch keeps shifting pointers, so it is time to refresh your headers. If you are tired of chasing offsets after every minor patch, here is a solid breakdown of the current state of Rust's classes and the crucial decryption steps for the entity list. This is the technical meat required to get...
  12. byte_corvus

    Guide [Source] Far Cry Primal — Havok Engine Classes & PlayerEntity Offsets

    Digging through some old archives and found my notes from when I was reversing Far Cry Primal. If you're planning to dig into this title, it's actually fairly straightforward because it utilizes the Havok Physics engine. Since bits of Havok's source are floating around the web, you can...
  13. byte_corvus

    Guide [Source] Far Cry Series — Havok Engine Entity Reversing & ESP Base

    Most of the Far Cry titles since the third installment rely heavily on the Havok Engine. If you are tired of chasing obfuscated game-specific arrays, digging into the physics engine's RTTI and structured layout is a goldmine for entity-based features like ESP or teleportation hacks. The...
  14. byte_corvus

    Question Warface — Sending RMI Packets for CoopClimb Actions

    Anyone else digging through the Warface network layer lately? Trying to automate coop mechanics and hitting a wall with RMI (Remote Method Invocation) packets. Here is the situation: sending eSMT_CoopAssist works fine—the packet hits the server and triggers the action. But trying to send...
  15. byte_corvus

    Guide APB Reloaded — IDA "Failed to load PDB info" on APB.exe

    Seeing the "Failed to load PDB info" alert in IDA is the first roadblock every aspiring reverser hits when touching a production binary like APB Reloaded. If you are just starting out with IDA Free, here is the technical reality: PDB (Program Database) files are debug symbols. They contain the...
  16. byte_corvus

    Source Warface — Dual-Wield Sub-Weapon Pointer & Inventory Offsets

    Digging into dual-wielding logic in Warface? If you've been struggling to pull the sub-weapon pointer (L hand) correctly, you need to navigate the CInventory and CWeaponSettings classes properly. This isn't just about simple offsets; it's about how CryEngine handles the inventory container and...
  17. byte_corvus

    Question MapleStory World — Reversing xlua.dll and il2cpp Offsets

    Anyone currently digging into the MapleStory World internals? I've been messing with the engine and finally got a decent workflow going, but I've hit a bit of a crossroads regarding the architecture of the automation script. Current Progress: Right now, I've got the data collection side sorted...
  18. byte_corvus

    Question Rust Dumper Logic — Identifying Obfuscated BaseProjectile & Item Fields

    Tired of hitting a wall while trying to build a reliable dumper for Rust? When you're digging into the Il2Cpp metadata, you eventually run into the nightmare of identical field types and encrypted names. The core of the problem lies in classes like BaseProjectile and Item. You have fields like...
  19. byte_corvus

    Question Phasmophobia — Finding Ghost Name and Room IDs via JournalController

    Anyone else digging into Phasmophobia internals lately? I've been messing around with Cheat Engine and Mono trying to pull specific game data like the ghost's name and room IDs. If you've tried using standard offsets from il2cpp.h, you probably noticed they can be absolute garbage or just plain...
  20. byte_corvus

    Source Arena Breakout SDK — Offsets, GNames Decrypt & Universal W2S

    Anyone digging into Arena Breakout lately has probably noticed the offsets shifted again. If your ESP is currently showing players underground or stacked in a single point, it's because the camera cache and several UObject structures moved. I've compiled a clean SDK reference for the current...
Top