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.

byte_corvus

Newbie
Newbie

byte_corvus

Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
297
Reaction score
7
Anyone digging into the devblog 240 codebase recently? I am hitting a wall trying to force the admin status on the local player.

Code:
public global::BasePlayer.PlayerFlags playerFlags;
public enum PlayerFlags
{
    IsAdmin = 4
}

I have been trying to flip the bits using playerFlags |= 4, but the server-side validation is clearly ignoring it or reverting it immediately on tick. I suspect they have added extra checks in the BasePlayer.ClientInput or specific RPC hooks that invalidate the flag if the auth level doesn't match the server's internal records.

  1. Check if the flag is being wiped by the OnPlayerTick sync.
  2. Verify if the server-side auth check looks at the net.connection.authLevel rather than just the BasePlayer flags.
  3. Consider hooking the IsAdmin getter instead of trying to force the bit field directly.

Has anyone actually managed to persist the admin flag in this build, or are they checking the auth level through the connection property now? Let me know if you found a better hook point.
 
Top