cs2-dumper/README.md

37 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2023-10-14 13:18:52 +08:00
# cs2-dumper
2023-09-08 15:59:09 +08:00
2024-04-16 10:39:03 +08:00
An external offset/interface dumper for Counter-Strike 2, with support for both Windows & Linux. Powered by [memflow](https://github.com/memflow/memflow).
2023-10-26 13:41:34 +08:00
2024-04-16 10:39:03 +08:00
The native Linux version is available in the [linux](https://github.com/a2x/cs2-dumper/tree/linux) branch.
2024-03-27 09:47:10 +08:00
2024-03-28 20:19:20 +08:00
## Getting Started
2023-10-26 13:41:34 +08:00
2024-03-28 20:19:20 +08:00
You can download the latest release from [Releases](https://github.com/a2x/cs2-dumper/releases) or compile it yourself.
Note that compiling it yourself requires your Rust compiler version to be at least 1.74.0 or newer, and the nightly
toolchain must be installed.
2023-10-26 13:41:34 +08:00
2024-03-28 20:19:20 +08:00
## Usage
2023-10-26 13:41:34 +08:00
2024-03-28 20:19:20 +08:00
1. Ensure the game process is running (Being in the main menu should suffice).
2024-04-20 22:39:34 +08:00
2. Run the `cs2-dumper` executable (Note that some memflow connectors may require elevated privileges).
2023-09-08 15:59:09 +08:00
2024-04-01 17:09:44 +08:00
When running the executable without providing an optional memflow connector name, it will default to using the [memflow-native](https://github.com/memflow/memflow-native) cross-platform OS layer to read the memory of the game process. If you wish to use an existing memflow connector instead, pass the `connector` and optional `connector-args` arguments to the program.
2023-09-08 15:59:09 +08:00
E.g. `./cs2-dumper -c pcileech -a device=fpga -vvv`
2023-09-08 15:59:09 +08:00
2024-03-28 20:19:20 +08:00
### Available Arguments
2023-09-08 15:59:09 +08:00
2024-03-28 20:19:20 +08:00
- `-c, --connector <connector>`: The name of the memflow connector to use.
2024-04-20 22:39:34 +08:00
- `-a, --connector-args <connector-args>`: Additional arguments to pass to the memflow connector.
- `-f, --file-types <file-types>`: The types of files to generate. Default: `cs`, `hpp`, `json`, `rs`.
2024-03-28 20:19:20 +08:00
- `-i, --indent-size <indent-size>`: The number of spaces to use per indentation level. Default: `4`.
2024-04-20 22:39:34 +08:00
- `-o, --output <output>`: The output directory to write the generated files to. Default: `output`.
- `-p, --process-name <process-name>`: The name of the game process. Default: `cs2.exe`.
- `-v...`: Increase logging verbosity. Can be specified multiple times.
2024-03-28 20:19:20 +08:00
- `-h, --help`: Print help.
- `-V, --version`: Print version.
2023-10-14 13:18:52 +08:00
2024-03-28 20:19:20 +08:00
## License
2023-09-08 15:59:09 +08:00
2024-03-28 20:19:20 +08:00
Licensed under the MIT license ([LICENSE](./LICENSE)).