Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.36 KB

CSGO-Triggerbot-Tutorial.md

File metadata and controls

39 lines (31 loc) · 1.36 KB

CSGO-Triggerbot-Tutorial

Code that has to be modified:
CSGO_Triggerbot.asm

Step 1

Make sure to disable any Exploit-protection in your AnitVirus software.
You can also try to exclude CSGO from the exploit-protection.

Step 2 - Trigger key

Key codes:

https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes

Image of Mouse with Labels

In the Assembly file:

@l_MainLoop:;//EAX => Triggerbot key:
mov eax,0x6;//-> VK_XBUTTON2
;//https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
mov VR9, eax;

Step 3 - Change the trigger key

Lets change the Trigger-bot-key to Y
In the Microsoft documentation you can find:

0x59                       Y key

You need to change the source code to the following:

@l_MainLoop:;//EAX => Triggerbot key:
mov eax,0x59;
;//https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
mov VR9, eax;