ScrapHacks/ScrapHacks/README.md

37 lines
1.1 KiB
Markdown
Raw Normal View History

## Features
- read and write memory
- change DirectX state
- Draw DirectX overlay (still need to make a useful overlay)
- Dump various data structures to the console
- Assemble and execute code on the fly
- Can be controlled via keyboard shortcuts (TODO: allow defining own shortcuts for commands)
## Prerequisites
- Visual Studio 2017/2019 (others might work)
- CMake
- Python 3.6 or newer
## Building
2019-12-04 00:21:51 +00:00
Open VS 32-bit command prompt (`vcvars32.bat`) and run the following two commands
2019-02-23 21:44:33 +00:00
2019-09-01 20:45:07 +00:00
```batch
2019-12-04 00:21:51 +00:00
cmake -G"NMake Makefiles" -B build
cmake --build build --target install
2019-02-28 16:50:52 +00:00
```
2019-09-01 20:45:07 +00:00
This will find the Games's installation folder, verify that the version you have is compatible with ScrapHacks and drop the compiled `.pyd` file into the correct folder to be imported
## Getting started
2019-11-20 19:48:15 +00:00
- open the ingame console (Ctrl+^)
- type `import ScrapHack`
2019-12-04 00:21:51 +00:00
- type `$help`
## Notes
2019-12-04 10:59:49 +00:00
(this has only been tested with a (cracked/unpacked/de-obfuscated) `Scrap.exe` v1.0 with a SHA1 checksum of `d2dde960e8eca69d60c2e39a439088b75f0c89fa` , other version will crash if the memory offsets don't match)
2019-11-20 19:48:15 +00:00