Skip to content

Instantly share code, notes, and snippets.

@devsli
Last active August 29, 2015 14:10
Show Gist options
  • Save devsli/7b1d85f8e70293c04b11 to your computer and use it in GitHub Desktop.
Save devsli/7b1d85f8e70293c04b11 to your computer and use it in GitHub Desktop.
Clicker Heroes rapid clicker. http://clickerheroes.com
; [1] Useless
; [2] 2xDPS
; [3] 1,5xCritClick
; [4] 2xGold
; [5] 1%Gold/Click
; [6] Dark Ritual
; [7] 3xClick
; [8] Double next
; [9] Reload prev
; - DPS
; 2 - 2*DPS
; 292 - 2*2*DPS
; 2982 - 2*2*2*DPS
;
; ==>
;
; x98x == x*8
; x9x8y == x*2 && y*2
$max_dps = "2982-345716"
$max_click_damage = "7987-345216"
$max_crit_click = "79783-24516"
$max_gold1 = "49485-23716"
$combo = $max_crit_click
$use_combo = True
$fire_duration = 31; sec
WinWaitActive("[REGEXPTITLE:Lvl \d+ - Clicker Heroes]")
if $use_combo Then
AutoItSetOption("SendKeyDelay", 50)
MouseClick("left")
Send($combo)
AutoItSetOption("SendKeyDelay", 5)
EndIf
$click_per_sec = 49; (estimated)
for $i = 1 to $fire_duration * $click_per_sec
MouseClick("left")
next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment