The Ultimate With Your Coworker Cheat Engine Guide (And A Much Easier Alternative)

Quick Answer: How do you cheat in With Your Coworker?

To cheat in With Your Coworker, you can manually attach Cheat Engine to the game’s executable and scan for changing numeric values like your remaining shift timer and your accumulated Office Bucks. However, because game updates frequently break Cheat Engine tables (.CT files), the safest and easiest alternative is using an auto-updating mod manager like XMODhub, which provides 1-click cheats without requiring any memory scanning or hexadecimal knowledge.

Editor’s Note

Look, I get it. We all start With Your Coworker thinking we’re going to play it completely legit. But after dying to The Q4 Financial Audit Level for the 15th time, or spending hours grinding for Golden Coffee Beans, the fun stops. I’ve been messing with Cheat Engine for years, and trying to isolate the exact memory values for this game’s current patch almost drove me insane. Today, I’m going to show you how to manually hack the values if you want the technical challenge—but I’ll also share the 1-click shortcut I actually use to save my sanity.

You may also like: The Ultimate With Your Coworker Console Commands and Cheats Guide

1. How to Use Cheat Engine for With Your Coworker (The Manual Way)

If you want to go the old-school route and find the memory addresses yourself, here is the basic “First Scan/Next Scan” method tailored for this game.

When you are playing With Your Coworker, one of the most stressful mechanics is the constantly depleting Shift Timer and the rapidly rising Stress Meter. If your Stress Meter maxes out before you finish your cooperative tasks, your run is instantly ruined. Modifying this specific value requires a solid understanding of how floating-point values work in modern game engines. Here is the exact, highly specific 5-step process to manually isolate and freeze your Stress Meter in With Your Coworker so you never fail a task again.

1.Step 1: Attach to the Correct Executable and Prepare the Scan Type First, launch With Your Coworker and load directly into a playable level (do not stay on the main menu, as the memory addresses for your character’s stats have not been dynamically allocated yet). Once you are in the level, pause the game, open Cheat Engine, and click the glowing PC icon in the top left corner. Select the With Your Coworker.exe process. Because the Stress Meter in With Your Coworker is represented as a visual bar rather than a raw number on your screen, you cannot scan for a simple “4 Bytes” exact value. You must change the “Value Type” dropdown to “Float” and the “Scan Type” to “Unknown Initial Value”. Click “First Scan”. This will likely yield millions of results.
2.Step 2: Manipulate the In-Game Stress Value Return to With Your Coworker and unpause. Deliberately perform an action that increases your Stress Meter—for example, carrying too many heavy document folders at once, failing a mini-game, or standing near the annoying manager NPC. Once the visual bar increases slightly, immediately pause the game again.
3.Step 3: Filter the Memory Addresses Tab back into Cheat Engine. Change the “Scan Type” dropdown to “Increased Value” (since your stress went up) and click “Next Scan”. Your results will drop from millions to perhaps a few hundred thousand. Go back into With Your Coworker, let your character rest for a moment so the Stress Meter drops, pause, and do a “Decreased Value” scan. Repeat this tedious process of increasing and decreasing the meter, scanning appropriately each time, until you have narrowed the address list down to fewer than 10 results.
4.Step 4: Isolate the True Memory Address You will notice a few addresses constantly fluctuating even when the game is paused—ignore those, as they are likely rendering timers or background physics calculations. Look for the Float value that perfectly mirrors your in-game actions. Double-click that specific address to drop it into your active cheat table at the bottom of the window.
5.Step 5: Freeze the Value and Test the Game Now that the memory address is in your lower table, change its value to 0 (which represents zero stress) and click the small checkbox to the left of the address to “Freeze” it. Return to With Your Coworker. If you have done this correctly, your character can now sprint indefinitely, fail tasks repeatedly, and carry infinite items without the Stress Meter ever moving from zero. You have essentially created a manual God Mode.
Value Type In-Game Stat in With Your Coworker Recommended Search Strategy
4 Bytes Office Bucks (Currency) Exact Value Scan. Earn/spend bucks, scan new value.
Float Shift Timer (Countdown) Unknown Initial Value -> Decreased Value -> Unchanged Value.
Float Stress / Stamina Meter Unknown Initial Value -> Increased/Decreased Value.
2 Bytes Inventory Items / Memos Exact Value Scan. Drop an item, scan, pick up, scan.
Array of Bytes (AOB) Player Movement Speed Advanced AOB injection requiring assembly knowledge.

2. Common CE Errors: Pointers Breaking & Not Attaching

If you are pulling your hair out because CE isn’t working for With Your Coworker, you aren’t alone. Here is what’s probably happening:

Error: “Cannot attach to process” / Game Crashes

With Your Coworker might be using specific engine protections. Modern PC games are increasingly built with sophisticated memory obfuscation, anti-tamper layers, or aggressive thread-monitoring systems that immediately detect when an external debugger like Cheat Engine attempts to hook into their memory space. When you try to attach the standard Windows debugger via Cheat Engine, With Your Coworker detects the intrusion and deliberately crashes itself to the desktop as a defensive measure. To bypass this, you need to configure Cheat Engine to use a different debugging method. Go to the “Edit” menu in Cheat Engine, select “Settings”, and navigate to the “Debugger Options” tab. Change the debugging method from the default “Windows Debugger” to “Use VEH Debugger” (Vectored Exception Handling). The VEH Debugger intercepts exceptions at the application level rather than the kernel level, which often slips right past the basic memory protections used in games like With Your Coworker. After applying this setting, restart both the game and Cheat Engine. You should now be able to attach to the process without triggering an immediate crash.

The Pointer Problem

You finally found the exact memory address for your Office Bucks in With Your Coworker, you froze it, you bought all the upgrades, and you feel like a genius. Then, you complete the level, hit a loading screen, and suddenly your cheat stops working. Worse, modifying that same address now crashes your game. Welcome to the nightmare of Dynamic Memory Allocation (DMA).

In modern game engines, memory is not static. Every time With Your Coworker loads a new level, spawns a new room, or transitions between states, the operating system reallocates memory. The address you found (e.g., 0x1A4B8F90) was only temporarily assigned to your Office Bucks. To fix this manually, you have to find the “Base Pointer”—the master address that tells the game where the temporary addresses are being stored. This requires right-clicking your found address, selecting “Find out what accesses this address”, attaching a debugger, reading the raw assembly code (x86/x64 instruction sets), calculating hexadecimal offsets, and creating a multilevel pointer map. For a constantly updating game like With Your Coworker, these pointer chains can be five or six levels deep. Writing custom Auto Assembler scripts (AOB Injection) to bypass this is incredibly frustrating and requires actual programming knowledge. One wrong byte in your script, and you corrupt the game’s memory heap entirely.

3. The Better Alternative: 1-Click Cheats with XMODhub

Here is the dirty little secret of the modding community: Nobody actually wants to spend two hours updating Cheat Engine tables every time a patch drops. The moment With Your Coworker updates on Steam, your hard-earned memory addresses shift, and your game crashes to the desktop.

Metric Manual Cheat Engine XMODhub Auto-Trainer
Setup Time 30 – 60 minutes per session < 5 seconds
Update Reliability Breaks on every minor game patch Cloud-synced auto-updates
Crash Risk High (Incorrect hex edits corrupt saves) Zero (Safely sandboxed memory hooks)
Ease of Use Requires hexadecimal & assembly knowledge Simple UI with ON/OFF toggles
Feature Access Limited to what you can manually scan Instant God Mode, Speedhacks, Custom Spawns

Why XMODhub beats manual CE for With Your Coworker:

Zero Hex Codes Needed: Just toggle a beautiful switch on our UI.
Auto-Updating Cloud Tech: When the game patches, XMODhub updates its trainer automatically. No more broken scripts.
Premium Features Instant Access: Undetected God Mode / Infinite Health
Unlimited Overtime Vouchers
Infinite Golden Coffee Beans
Super Speed & Custom Jump Height
One-Hit Kills for annoying bosses.

(Image Placeholder: XMODhub 1-click trainer interface for With Your Coworker replacing complex Cheat Engine tables)

How to Use XMODhub for With Your Coworker?

1.Download: Download and Launch the free XMODhub desktop app.
xmodhub app
2.Search: Search for “With Your Coworker” in the library.
XMODhub With Your Coworker trainer: Lock stamina, set time scale, and add all cosmetic items.
3.Launch: Click “Play” to auto-hook the game safely.
4.Activate: Toggle your desired cheats directly from the clean UI or via hotkeys.

【Download With Your Coworker trainer Now】

4. Where to Find Safe With Your Coworker Cheat Tables (.CT)?

If you absolutely insist on using CE, you’ll want a pre-made Cheat Table (.CT file). However, you need to understand the severe cybersecurity risks associated with downloading random Cheat Engine tables from obscure gaming forums, untrustworthy subreddits, or anonymous Discord servers.

A .CT file is not just a harmless text file containing memory addresses. Cheat Engine features a highly robust Lua scripting engine built directly into the software. This means that when you download a Cheat Table for With Your Coworker and execute it, you are potentially running arbitrary code with administrative privileges on your machine. Malicious actors frequently exploit this by hiding payloads within the Lua scripts of highly requested cheat tables.

When you click “Activate” on a sketchy table, it might silently execute a PowerShell command in the background. We have seen countless instances where players looking for simple cheats end up infecting their PCs with Remote Access Trojans (RATs), keyloggers designed to steal Steam and bank credentials, or stealthy crypto-miners that permanently throttle your GPU performance. The promise of “Infinite Office Bucks” is an easy bait for hackers to distribute malware.

Furthermore, community-made tables are notoriously unreliable. A table made for version 1.0.2 of With Your Coworker will instantly cause access violation crashes if you attempt to use it on version 1.0.4. This is exactly why a verified, professionally developed application like XMODhub is the vastly superior and safer choice. XMODhub operates in a secure, sandboxed environment, is digitally signed, and is rigorously tested against malware. You get all the power of a custom Cheat Engine table without exposing your expensive gaming rig to digital threats.

5. Top Features to Look For in a With Your Coworker Cheat Table

If you are sourcing a legitimate .CT file for With Your Coworker, you need to know the difference between a low-effort table and a professionally scripted one. A basic table simply lists raw memory addresses that will inevitably break upon your next area transition. A high-tier table, however, utilizes Auto Assembler scripts to inject custom logic directly into the game’s executable code.

When evaluating a With Your Coworker cheat engine table, these are the core scripts that provide the most value for bypassing the game’s notorious grind, along with their technical stability ratings.

Cheat Script / Feature Functionality & In-Game Impact Risk of Breaking on Patch XMODhub Equivalent
Infinite Golden Coffee Beans Freezes the premium currency array, allowing infinite perk purchases at the breakroom vendor. High (Dynamic offsets shift frequently) 1-Click Auto-Toggle
Manager Stealth Mode Disables NPC line-of-sight raycasting. The manager will never catch you slacking. Very High (Requires complex AOB injection) Undetected Ghost Mode
Task Auto-Complete Flag Forces the current active task boolean flag to 1 (True), instantly finishing tedious mini-games. Medium (Relies on static pointer chains) Instant Task Win
Unlimited Overtime Vouchers Locks the inventory quantity for overtime passes, ensuring you never run out of retries. Low (Simple 4-byte static scan) Infinite Items
Freeze Shift Timer Nops (No Operation) the instruction that subtracts time from the global level clock. Medium (Assembly instruction hooks) Time Manipulation

A robust table should include a script explicitly labeled [Enable], which safely allocates memory and registers symbols before you activate any individual cheats. If you open a table and only see a list of hex codes like 0x14B29A with no scripts attached, delete it immediately—it will only corrupt your save file.

6. How to Update a Broken With Your Coworker .CT File

So, the developers just dropped a hotfix for With Your Coworker, and now your favorite Cheat Engine table is completely non-functional. Clicking the activation boxes does nothing, or worse, instantly crashes your game. If you have the technical patience, you can manually update the table’s broken Array of Byte (AOB) signatures.

1.Step 1: Identify the Broken Script: Open the .CT file in Cheat Engine, right-click the script that isn’t working (e.g., “Infinite Office Bucks”), and select “Change Script”. Look for the aobscanmodule line. It will look something like this: aobscanmodule(bucks_hook, With Your Coworker.exe, 89 43 10 48 8B 5C 24 30). This string of hex values is the unique signature Cheat Engine searches for to inject your cheat.
2.Step 2: Find the New Signature: When the game updates, those bytes often change slightly due to code recompilation. To fix this, you must attach a debugger, find the new memory address handling Office Bucks (using the First Scan/Next Scan method detailed in Section 1), and right-click it to select “Find out what writes to this address”.
3.Step 3: Update the Auto Assembler Script: Once you isolate the new assembly instruction modifying your currency, right-click it and choose “Copy memory”. Paste this new byte array back into your script, replacing the old 89 43 10… string. Replace any fluctuating variables in the string with wildcard symbols (??) to ensure the scan remains stable in the future. Click “Assign to current cheat table”.

Does this sound exhausting? It is. Signature scanning requires a fundamental understanding of x64 assembly language. This tedious maintenance loop is exactly why 90% of the player base transitions to managed trainers like XMODhub, where dedicated developers handle all the AOB updating behind the scenes.

7. Frequently Asked Questions (FAQ)

Platform / Game Mode Compatibility Status Ban Risk Level
Steam (Singleplayer) 100% Compatible Safe (No Risk)
Epic Games (Singleplayer) 100% Compatible Safe (No Risk)
Xbox Game Pass (PC) Requires XMODhub Bypass Moderate (Requires care)
Online Co-op / Multiplayer Strictly Prohibited High (Instant Account Ban)
Q: Can I use Cheat Engine on the Xbox Game Pass version of With Your Coworker?

A: Usually, no. Game Pass uses strict UWP file encryption that actively blocks Cheat Engine. However, XMODhub is specifically engineered to bypass these restrictions seamlessly.

Q: Is it illegal to use Cheat Engine?

A: Modifying data on your own PC for a single-player experience like With Your Coworker is completely legal. Just never bring memory editors into a multiplayer server.

Q: Will using Cheat Engine drop my FPS or slow down my PC?

A: Yes, it absolutely can, depending on how you use it. When you perform a “First Scan” using Cheat Engine on a modern title like With Your Coworker, the software has to iterate through gigabytes of active RAM pages allocated to the game. If you have 16GB or 32GB of RAM, scanning “Unknown Initial Values” across all memory regions will cause a massive CPU spike, force your disk to page aggressively, and temporarily tank your frame rate to single digits. Once the address is found, simply freezing a value (which writes the desired number to that memory address every 10 to 50 milliseconds) requires negligible processing power. However, poorly optimized community Lua scripts or inefficient AOB (Array of Bytes) injections that constantly poll memory can cause severe micro-stutters and frame-pacing issues while you play. XMODhub avoids this by injecting optimized C++ hooks directly into the game’s execution flow, ensuring zero FPS drops.

Conclusion: Work Smarter, Not Harder

Learning how memory manipulation works in Cheat Engine is a cool flex. But let’s be real—when you come home from a long day at work, you just want to spawn in that legendary Platinum Executive Keycard and wreck some enemies without taking a computer science class.

Why spend 45 minutes digging through hex codes when you can click one button and instantly get God Mode? And the best part? XMODhub supports over 5,000+ PC games. Once you install the app, you can ditch the complicated cheat tables for good.

xmod games

 

Download XMODhub Trainer Now

  • Catherine Hu

    I am a passionate gamer and writer at XMODhub, dedicated to bringing you the latest gaming news, tips, and insights. Connect with me: LinkedIn Profile ↗

    Related Posts

    Best Stardew Valley Mods Tool (2026): Safe Downloads & No-Crash Guide

    Quick Answer: What is the best and safest Stardew Valley mods tool? To modify your gameplay safely without corrupting your save files, you need to use the right Stardew Valley mods tools: ✦XMODhub:…

    Stardew Valley Item IDs List & Console Spawn Codes (Complete Guide 2026)

    Want to test out the endgame weapons early? Are you tired of grinding for rare crafting materials, or perhaps you accidentally sold a critical quest item and now your playthrough is soft-locked? Whether…

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Primary Color

    Secondary Color

    Layout Mode