CSGO AHK Macro
  • Introduction
  • Installation & Usage Guide
  • Features
    • Script against VAC
    • Keybinds
    • Recoil Macros
    • Bunny hop
    • 180 turn around
    • Right peek assist
    • Left peek assist
    • Fast jump throw
    • Fast bomb drop
    • Quick-switch fire
    • Auto pistol
    • Auto strafe
  • Additional scripts
    • Triggerbot
    • Legit aimbot
Powered by GitBook
On this page

Was this helpful?

  1. Features

Fast bomb drop

Faster CSGO bomb drop bind made in AHK

This is a bomb drop bind made in AHK.

What this bind does is dropping the bomb immediately after pushing a bind. This can also be achieved using console commands.

;Fast bomb drop
z::
sleep, 10
Send, 5
sleep 10
Send, g
return

If you want to use this bind on the script rather than on console, there are a few things that should be noticed.

Send, 5

This line represents the action of pulling out your C4. "5" is the default key to do this. If you changed the C4 key, change "5" to that key. For example, if you binded the C4 key to "j" in game, change the line from "Send, 5" to "Send, j".

Send, g

This line represents the action of dropping your items. "g" is the default key to do this. If you changed the item drop key, change "g" to that key. For example, if you binded the drop key to "j" in game, change the line from "Send, g" to "Send, j".

Change "z" to your desired activation hotkey ("X" with "X" representing the key of your choice. For example if you want the activation key to be the "F" key you replace "z" with "f").

PreviousFast jump throwNextQuick-switch fire

Last updated 3 years ago

Was this helpful?