ScrapHacks/README.md

31 lines
1.6 KiB
Markdown
Raw Normal View History

2017-10-08 01:13:32 +00:00
# Scrapland Reverse Engineering noted and tools
2017-10-07 23:26:21 +00:00
## Scripts:
2017-10-07 23:37:07 +00:00
* `parse_save.py`: Dumps information extracted from Save file
2017-10-08 00:05:00 +00:00
* `scrapper.py`: Extractor and Repacker for *.packed files, needs the `construct` and `tqdm` python modules and python 3.x
2017-10-07 23:26:21 +00:00
- Run `scrapper.py -h` for help
2019-02-28 16:50:52 +00:00
* `lib/dbg.py`: general Script for poking around inside the game's scripting system
2017-10-07 23:26:21 +00:00
- Run `import dbg` inside the Game's Console,
this will load all builtin modules and enable godmode
- The dbg module also enables writing to the ingame console using `print <var>`
and defines two global functions s_write() and e_write() for writing to the Ingame Console's Stdout and Stderr Stream
2019-02-28 16:50:52 +00:00
- `dbg.menu()` Displays the Game's built in Debug Menu (doesn't work properly)
2017-10-07 23:26:21 +00:00
- `dbg.enable_all_conv()` allows you to "overwrite" any character, even if they are protected/invulnerable
- `dbg.become(name)` allows you to transform into any character
- `dbg.helplib()` generates a file `helplib.txt` in the Game's folder containing all available Documentation for all available classes and functions
2019-02-28 16:50:52 +00:00
- `dbg.settrace()` Logs all Python function calls together with their arguments into a `dbg.txt` file inside the Game's folder
2019-02-23 21:44:33 +00:00
## [ScrapHacks](ScrapHacks/README.md)
WIP Memory hacking library
2017-10-08 01:13:32 +00:00
2019-02-28 16:50:52 +00:00
## [Notes](NOTES.md)
# Tools used:
- [Python 3](https://python.org/) + [Construct](https://construct.readthedocs.io/en/latest/)
- [IDA](https://www.hex-rays.com/products/ida/index.shtml) and [x32dbg](https://x64dbg.com/)
2019-02-28 16:50:52 +00:00
- [Reclass.NET](https://github.com/ReClassNET/ReClass.NET)
- [HxD](https://mh-nexus.de/en/hxd/)
2019-11-20 19:53:00 +00:00
- [Kaitai Struct](http://kaitai.io/)
- [Radare2](https://www.radare.org/)