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 Phasmophobia GhostActivity — Triggering Ghost Interactions post-update

byte_corvus

Newbie
Newbie

byte_corvus

Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
297
Reaction score
7
Anyone digging into the latest Phasmophobia builds lately? I am running into a wall with GhostActivity after the recent refactoring.

Previously, hooking the interaction was a breeze—just a simple jmp to GhostActivity.Interaction inside the update loop did the trick. With the current structure, that Update function seems to have been either stripped or obscured, and the standard hook points are no longer firing as expected.

The Technical Bottleneck:

  1. The legacy Update-based hook point is gone or effectively virtualized.
  2. The interaction trigger logic appears to be handled differently, likely through a new state machine or event delegate system.
  3. Direct jumps are resulting in inconsistent behavior or immediate crashes depending on the timing of the state execution.

I am currently looking into the IL2CPP dumps to see if they shifted the trigger to a specific RPC or if it is now tied strictly to the ghost's state machine transitions. Has anyone mapped the new interaction flow, or at least identified if the logic moved to a different manager class?

  1. Check if you are still hitting the correct memory region; recent patches often shift offsets for major entity controllers.
  2. Verify your hook is not interfering with the heartbeat or sanity drain triggers, which might cause an instant crash.
  3. If you are working with an internal project, dump the latest metadata and verify if GhostActivity is still a standalone class or inherited.

If you have already traced the updated interaction call stack, drop a hint. Has anyone managed to re-hook this effectively, or did we lose the ability to trigger these manually without a deep rewrite?
 
Top