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.

Question ETS2 TruckersMP — Reversing core_ets2mp.dll for Non-Collision

byte_corvus

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
598
Reaction score
7
Anyone currently digging into the TruckersMP binaries? I've been poking around core_ets2mp.dll trying to figure out how they flip the bit for non-collision zones. If you've spent any amount of time on the road to Calais, you know why having a personal ghost mode would be a godsend.

The main entry point for this investigation is a specific string found in the DLL:
Code:
You have %s non collisions zone.

Analysis of core_ets2mp.dll
When a mod or game prints a status message like this, it's almost always tied to a logic check that determines if your truck should be ghosted. By tracing the Xrefs (cross-references) to this string in IDA, we can find the function responsible for the zone state transition.

fabmuZc.png

Gh84mRS.png


The goal is to locate the offset that toggles the collision flag. If the logic is purely client-side for the physics engine, forcing this state could allow for a permanent non-collision bypass. However, TruckersMP is relatively tight with server-side synchronization, so simply flipping a bit might cause desync or catch the eye of an admin if you start phased-driving through a traffic jam in Duisburg.

  1. Load the core_ets2mp.dll into IDA Pro.
  2. Search for the 'non collisions' string in the defined strings table.
  3. Analyze the subroutines calling it to identify the zone manager logic.
  4. Identify if the collision state is stored as a simple boolean or a bitmask.

Keep in mind that client-side physics hacks in a multiplayer environment are always high-risk. If you're going to test this, do it on a secondary account and stay away from high-traffic areas until the logic is confirmed.

Anyone here successfully hooked the zone update functions or found the specific collision struct in the latest build?
 
Top