Skip to content

Commit

Permalink
ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsweet committed Sep 25, 2022
1 parent f328bc5 commit 0756070
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
7 changes: 7 additions & 0 deletions AHK/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ Config description:
- sens: 對應游戲裏設置的鼠標靈敏度

## Update
### 2022/09/25 version 1.3.6
- update Havoc's pattern
- update Devotion's pattern
- fix gold optics bugs
- add green.ahk which removes the gold optics feature
- fix single-fire weapon bugs

### 2022/09/16 version 1.3.5
- update Havoc's pattern
- fix gold optics bugs
Expand Down
7 changes: 5 additions & 2 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 := "0f4646ad95d9427c84a0df7ac88084ef"
global UUID := "b7ccf42250e64a07a057576a688cadea"

HideProcess()

Expand Down Expand Up @@ -475,7 +475,10 @@ $*LButton::
}

DllCall("mouse_event", uint, 0x01, uint, Round(x * modifier), uint, Round(y * modifier))
; ToolTip % x " " y " " a_index
if (debug) {
ToolTip % x " " y " " a_index
}

Sleep, interval

if (!GetKeyState("LButton","P")) {
Expand Down
2 changes: 1 addition & 1 deletion AHK/src/green.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 := "ffc30624113940f4b4cbbd25b6276729"
global UUID := "b7ccf42250e64a07a057576a688cadea"

HideProcess()

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.5"
global script_version := "v1.3.6"

; Convert sens to sider format
global sider_sen := sens * 10
global UUID := "0f4646ad95d9427c84a0df7ac88084ef"
global UUID := "b7ccf42250e64a07a057576a688cadea"

; GUI
SetFormat, float, 0.1
Expand Down

0 comments on commit 0756070

Please sign in to comment.