From 872f24924f42c6fc34b17af809523a200c6c93c3 Mon Sep 17 00:00:00 2001 From: Tomelyr Date: Thu, 21 Dec 2017 00:01:12 +0100 Subject: [PATCH 1/2] removed uncessesary sell ICBING does not sell items, which you marked as "keep" if you press the "Sell All" Button. So the individual selling is not nessesary anymore. --- AutoICBING.ahk | 45 ++++++--------------------------------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/AutoICBING.ahk b/AutoICBING.ahk index d6f4218..66fcb7b 100644 --- a/AutoICBING.ahk +++ b/AutoICBING.ahk @@ -161,19 +161,8 @@ OpenBoxInLowestRes(hwnd, KeepHasPrio) { Click 10 690 Sleep 400 - Click, 1180 710 ; Sell loot, if possible - Sleep 400 ; Wait for the game to register the last click - - ; Same for the other three loot boxes: - - Click, 830 720 - Sleep 400 - - Click, 430 710 - Sleep 400 - - Click, 50 730 - Sleep 400 + Click, 570 780 ; Click "Sell All" button + Sleep 150 ; Wait for the game to register the last click } ; Main work for 1360x768 @@ -202,19 +191,8 @@ OpenBoxInLowRes(hwnd, KeepHasPrio) { Click 200 520 Sleep 400 - Click, 1070 545 ; Sell loot, if possible - Sleep 400 ; Wait for the game to register the last click - - ; Same for the other three loot boxes: - - Click, 800 555 - Sleep 400 - - Click, 505 550 - Sleep 400 - - Click, 180 555 - Sleep 400 + Click, 600 670 ; Click "Sell All" button + Sleep 150 ; Wait for the game to register the last click } ; Main work for 1600x900 @@ -243,17 +221,6 @@ OpenBoxInHiRes(hwnd, KeepHasPrio) { Click 240 610 Sleep 400 - Click, 1300 630 ; Sell loot, if possible - Sleep 400 ; Wait for the game to register the last click - - ; Same for the other three loot boxes: - - Click, 950 640 - Sleep 400 - - Click, 600 630 - Sleep 400 - - Click, 230 640 - Sleep 400 + Click, 750 780 ; Click "Sell All" button + Sleep 150 ; Wait for the game to register the last click } \ No newline at end of file From dc201f04196c9d34696ce26263df0e5ef280e5e2 Mon Sep 17 00:00:00 2001 From: Tomelyr Date: Thu, 21 Dec 2017 00:04:03 +0100 Subject: [PATCH 2/2] increased wait time after sell all --- AutoICBING.ahk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AutoICBING.ahk b/AutoICBING.ahk index 66fcb7b..ba51660 100644 --- a/AutoICBING.ahk +++ b/AutoICBING.ahk @@ -162,7 +162,7 @@ OpenBoxInLowestRes(hwnd, KeepHasPrio) { Sleep 400 Click, 570 780 ; Click "Sell All" button - Sleep 150 ; Wait for the game to register the last click + Sleep 400 ; Wait for the game to register the last click } ; Main work for 1360x768 @@ -192,7 +192,7 @@ OpenBoxInLowRes(hwnd, KeepHasPrio) { Sleep 400 Click, 600 670 ; Click "Sell All" button - Sleep 150 ; Wait for the game to register the last click + Sleep 400 ; Wait for the game to register the last click } ; Main work for 1600x900 @@ -222,5 +222,5 @@ OpenBoxInHiRes(hwnd, KeepHasPrio) { Sleep 400 Click, 750 780 ; Click "Sell All" button - Sleep 150 ; Wait for the game to register the last click + Sleep 400 ; Wait for the game to register the last click } \ No newline at end of file