Skip to content

Commit

Permalink
v1.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsweet committed May 21, 2023
1 parent 9ce07de commit 52c1ee5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 4 additions & 0 deletions AHK/change_log.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Logs
### 2023/05/21 version 1.3.12
- remove green.ahk
- change the gold optic feature's logic (still fucking buggy, may remove it totally in the future)
- support Season 17 (thanks to [Eternal-Walnut](https://github.com/Eternal-Walnut)

### 2023/02/27 version 1.3.11 (thanks to [Eternal-Walnut](https://github.com/Eternal-Walnut), [richardzzp](https://github.com/richardzzp))
- add hotkey to switch active state.
Expand Down
6 changes: 2 additions & 4 deletions AHK/src/apexmaster.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RunAsAdmin()
; read settings.ini
GoSub, IniRead

global UUID := "a3c194a97b4644bc95337cbb47d03a3f"
global UUID := "05ca9afc92a1412ca2d872ddf6ebe497"

HideProcess()

Expand Down Expand Up @@ -87,8 +87,6 @@ global P2020_PIXELS := LoadPixel("p2020")
global RE45_PIXELS := LoadPixel("re45")
global G7_PIXELS := LoadPixel("g7")
global SPITFIRE_PIXELS := LoadPixel("spitfire")
global ALTERNATOR_PIXELS := LoadPixel("alternator")
global RE45_PIXELS := LoadPixel("re45")
; heavy weapon
global FLATLINE_PIXELS := LoadPixel("flatline")
global PROWLER_PIXELS := LoadPixel("prowler")
Expand Down Expand Up @@ -224,9 +222,9 @@ global P3030_PATTERN := LoadPattern("3030.txt")
; sinper weapon pattern
global WINGMAN_PATTERN := LoadPattern("Wingman.txt")
; supply drop weapon pattern
global LSTAR_PATTERN := LoadPattern("Lstar.txt")
global HEMLOK_PATTERN := LoadPattern("Hemlok.txt")
global HEMLOK_SINGLE_PATTERN := LoadPattern("HemlokSingle.txt")
global HEMLOK_SINGLE_PATTERN := LoadPattern("HemlokSingle.txt")
; sella
global SELLA_PATTERN := LoadPattern("Sella.txt")

Expand Down
4 changes: 2 additions & 2 deletions AHK/src/gui.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ RunAsAdmin()
Gosub, IniRead

; global variable
global script_version := "v1.3.11"
global script_version := "v1.3.12"

; Convert sens to sider format
global sider_sen := sens * 10
global UUID := "a3c194a97b4644bc95337cbb47d03a3f"
global UUID := "05ca9afc92a1412ca2d872ddf6ebe497"

; GUI
SetFormat, float, 0.1
Expand Down
1 change: 0 additions & 1 deletion AHK/src/uuid_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def updateUUID(filename, new_uuid):

updateUUID('gui.ahk', new_uuid)
updateUUID('apexmaster.ahk', new_uuid)
updateUUID('green.ahk', new_uuid)
input("Done! Press enter to exit ;)") # to let people know the script is actually done...


0 comments on commit 52c1ee5

Please sign in to comment.