All-in-one memory scanner, code editor, and AI‑powered assistant for game modding and reverse engineering.
- 🧠 Memory scanner & editor – search and modify integer values in running processes (health, ammo, money, speed, etc.).
- 📝 Built‑in code editor with syntax highlighting and undo/redo.
- 🤖 AI helper – explain code, find bugs, autocomplete functions.
- 🔬 HEX viewer & string extractor – inspect any file (DLL, EXE, binaries).
- 📂 Project file tree – quick navigation through folders.
- 🎮 Works with any Windows game (single‑player, offline, or local‑server games).
- Launch CodeForge.exe as Administrator.
- Open your game (e.g., Baldi's Basics).
- Click "Process List" → select the game process.
- Click "Attach".
- Enter a value (e.g.,
3) and run "First Scan". - Change the value in the game (e.g., spend an item → becomes
2). - Run "Next Scan" with the new value (
2). - Repeat until only 1–2 addresses remain.
- Select an address → click "Edit Value" → enter
9999. - ✅ Done! Check your game.
- Download
CodeForge.exefrom the Releases page. - Run it as Administrator.
- Clone the repo or download
CodeForge.py. - Install dependencies:
pip install psutil - Run:
python CodeForge.py
pip install pyinstaller
pyinstaller --onefile --console --hidden-import=psutil --hidden-import=ctypes --hidden-import=threading CodeForge.py