MACROS| ADS|Crouch Jump |100% undetected with python.
How this works:
What we are going to be doing is not using AHK anymore and instead, we are going to make our own macros using python.
With python, we can run code from many places and that is how it can never be detected. We are going to run our code in CMD or Windows PowerShell.
I don't think BlueHole will block cmd and other programs. If they do you can run your code in other places.
DO NOT:
Run through the python idle shell. They can block that like they did ahk.
Don't make it into a .py file or compile to an exe and run it. Might detect the sig.
INFO:
if you want me to make any macros tell me ill do it. I'm now back after a 2 week break.
If you are having an error tell me so I can fix it and update the pastebin code.
I added a chance of successfully doing a crouch jump if you want to look more 'legit'. Its default is at 100% chance so you will always crouch jump.
Tutorial:
Use this process and it is the same process with any python script/file. If you know what you are doing you can skip this.
1)First off you are going to need to download Python 3.6.2 or later version and installed.
2)Make sure the install directory and scripts was added to your environment variables. Should look like this but mine is on my D: drive. If you don't know how to check. search in your control panel on your pc for 'environment variables'. Then under variables find and click 'path' then click 'edit'

3)Now we need, you will need to open cmd As ADMIN and run the following commands. One way might work, others may not so I'm including them all.
pip install NameOfPackage
py pip install NameOfPackage
-m pip install NameOfPackage
python -m pip NameOfPackage
Change NameOfPackage to:
keyboard
example: pip install keyboard
after that is done being installed change keyboard to:
mouse
example: pip install mouse
I already have it installed but it will look something like this if you retry to download it

4) type:python it should look like this if not you have not installed python correctly(does not need to be in admin anymore)

5) now copy all the code and paste it in notepad or other text editor programs if you want to make changes to it for keybinds, chance of successfully doing a crouch jump or anything else recopy when done. Then paste it into CMD and hit enter a few times and it should look like this

6) Now you are done. Hit your keybinds to activate/deactivte ads or crouch jump, ext and go!
What we are going to be doing is not using AHK anymore and instead, we are going to make our own macros using python.
With python, we can run code from many places and that is how it can never be detected. We are going to run our code in CMD or Windows PowerShell.
I don't think BlueHole will block cmd and other programs. If they do you can run your code in other places.
DO NOT:
Run through the python idle shell. They can block that like they did ahk.
Don't make it into a .py file or compile to an exe and run it. Might detect the sig.
INFO:
if you want me to make any macros tell me ill do it. I'm now back after a 2 week break.
If you are having an error tell me so I can fix it and update the pastebin code.
I added a chance of successfully doing a crouch jump if you want to look more 'legit'. Its default is at 100% chance so you will always crouch jump.
Code:
list of keys to use in keybinds: -with mac and windows support. https://pastebin.com/KMjqvkTV The Code V1.04: - read my comments on the pastebin if you want to change keybinds https://pastebin.com/GcTS1D7S Keybinds: f5 = ads toggle on/off f6 = crouch jump toggle on/off f7 = panic stop the script shift+alt = shift and left alt have to be hit in any order but both pressed at the same time to crouch jump. this can be channged
Use this process and it is the same process with any python script/file. If you know what you are doing you can skip this.
1)First off you are going to need to download Python 3.6.2 or later version and installed.
2)Make sure the install directory and scripts was added to your environment variables. Should look like this but mine is on my D: drive. If you don't know how to check. search in your control panel on your pc for 'environment variables'. Then under variables find and click 'path' then click 'edit'

3)Now we need, you will need to open cmd As ADMIN and run the following commands. One way might work, others may not so I'm including them all.
pip install NameOfPackage
py pip install NameOfPackage
-m pip install NameOfPackage
python -m pip NameOfPackage
Change NameOfPackage to:
keyboard
example: pip install keyboard
after that is done being installed change keyboard to:
mouse
example: pip install mouse
I already have it installed but it will look something like this if you retry to download it

4) type:python it should look like this if not you have not installed python correctly(does not need to be in admin anymore)

5) now copy all the code and paste it in notepad or other text editor programs if you want to make changes to it for keybinds, chance of successfully doing a crouch jump or anything else recopy when done. Then paste it into CMD and hit enter a few times and it should look like this

6) Now you are done. Hit your keybinds to activate/deactivte ads or crouch jump, ext and go!
