- Status
- Offline
- Joined
- Oct 22, 2024
- Messages
- 127
- Reaction score
- 81
Hi everyone! Continuing to fill the section with good sources of cheats for Valorant. Today I want to share with you an improved aimbot source from berk000x. I already uploaded it before, you can search for the topic. Even original source is undetect, so for now this cheat also not detected by anticheat, can be used safely. Hack is tested, no viruses, especially since this is source code, you can edit and use it as you want. Author: rhaym.
View hidden content is available for registered users!
What was changed?
- Rewritten in another language. Was C#, now cheat is on C++.
- Code fully restructured for writing convenience, specifically by sections:
- Changes in screen capture part.
- In old version, function "get_screenshot" took parameter "save_name", which allowed to save screen directly to file. Return type was pointer to memory "unsigned int*", which indicated dynamically allocated memory.
- In new version this parameter (I mean save_name) is removed, now function just returns pixel buffer. New version use modern C++ "std::unique_ptr" parameter, which makes memory management easier and will cause less bugs in future.
- Memory part.
- In old version raw pointers "malloc" and "free" were used for memory allocation. Author of updated source did research and found that this created risks of memory leaks if errors happened before calling "free".
- In new version all this was replaced with "std::unique_ptr", which automatically manages memory and possible leaks are fixed.
- Bitmap config part.
- In old version headers were created manually using own calculations.
- In new version headers are easier to do, since image height is set negative (biHeight = -crop_height). This helps implement usability of format for DIB format, which is intuitively clear and works better with top part of image.
- File saving.
- In old version in "get screenshot" file saving logic was already built-in.
- In new version author moved this logic to separate function pixelsToBMP, which improves modularity and usability of code.
What new was added?
- Config system.
- Multithreading.
- Performance.
- GUI (user interface).
What is planned to do?
- Direct access to GPU: author wants to rewrite code to use DXGI Desktop Duplication API. It much faster than BitBlt (that is, everything else based on GDI) and it will be possible to use aimbot with FPS above 144 frames, which in Valorant is very important. The more FPS, the nicer to play and faster aim will trigger on enemies. And considering that almost all of us have monitors 144–165 hertz and higher, I really looking forward to adding this method to source. As soon as update is out, I will immediately upload it.
- Refuse from low-level hooks: instead of WH_MOUSE_LL use Raw Input API (functions RegisterRawInputDevices, GetRawInputData). When using direct input response time is reduced and in general it is less invasive. Although author is not sure if detect chance from Vanguard will decrease, API Raw Input does not change memory in any way, does not block, only reads input. As I read and found out, any input method that edits/blocks memory in Valik will be insta-banned. So this is good bypass method. Also waiting and will immediately upload update as soon as it is ready.
FAQ
- Can download and use immediately?
No, this is source code. Need to compile it through Visual Studio. - Cheat not detected by Vanguard?
For now not detected, what will be next - unknown. But author did everything so hack will continue to work stealthily. - Need something besides Visual Studio for hack?
Straight hands, C++ knowledge, ability to google.