https://github.com/elmodo7/ahk-cheatengine
A small utility to learn, search and modify RAM addresses using AutoHotkey.
https://github.com/elmodo7/ahk-cheatengine
memory ram
Last synced: about 1 month ago
JSON representation
A small utility to learn, search and modify RAM addresses using AutoHotkey.
- Host: GitHub
- URL: https://github.com/elmodo7/ahk-cheatengine
- Owner: elModo7
- License: mit
- Created: 2025-08-26T17:25:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-15T18:29:07.000Z (4 months ago)
- Last Synced: 2025-11-15T20:34:05.389Z (4 months ago)
- Topics: memory, ram
- Language: AutoHotkey
- Homepage:
- Size: 176 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RAM Search & Edit Tool

This is a basic example in AutoHotkey of a tool resembling [CheatEngine](https://github.com/cheat-engine/cheat-engine)'s main read/write memory functions.
It is very basic but covers a few of the most common ram searches.
> [!CAUTION]
> In the case that you use this for a game, **use it for offline games**, *I am not responsible for any misuse of this tool.* It is also very likely that it may be flagged by anticheats if you target a game process.
> [!NOTE]
> Remember that AutoHotkey is a **slow** interpreted programming language, the class however with no aditional code, is able to do around **~300.000 RAM reads per second** on an Intel core i7 8700K.
> AHK-L v1 also **lacks multithread support**, so if you want a lightning-fast alternative consider using a compiled language solution.

This is a stripped down version of one of my [EmuHook](https://github.com/elModo7/EmuHook) demos.