:alembic: toy-arms
Windows game hack helper utilities in rust. This crate has some useful macros, functions and traits.
What's toy-arms?
This is a toolkit for those who are fed up with coding game hack with C++ but still wanna make it in elegant way. Since this wraps many functions which frequently used, you can build hack without having to struggle with Windows-API. By using this, many part of your stress while coding low level fashion won't come in.
Get started
Include toy-arms in your dependencies table in Cargo.toml.
[]
= "0.7.3"
:fire: minimal examples
internal
With this crate, making dll is simple as this:
// A neat macro which defines entry point instead of you.
// Also, you dont have to alloc/free console by yourself, console will show up only when debug compile.
create_entrypoint!;
// Main thread
external
On the other hand, following code is how tamper with memory externally is like.
Since this one shows some example usage of the crate's features, it looks a bit fancier.
use ;
:card_file_box: Other examples?
Yes we have! Take a look at examples directory, you'll see more examples!
However, you may need to update offsets which some examples contain with your own hands.
Refer to hazedumper as always for latest offsets of CSGO.
To build examples to x86 arch:
cargo build --example EXAMPLE_NAME --target i686-pc-windows-msvc