Skip to content

Commit

Permalink
Uploaded v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zspz committed Aug 13, 2023
1 parent 9aa990f commit 49ea9e1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Natro Macro Patch Notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.7.1 Patch Notes

Bugs
-Fixed an issue with the Daily Reconnect. In some last minute code cleanup, I made hours 1-12 instead of 0-23 as intended... this error would make it so any daily reconnect would not work for hours > 12.


0.7.0 Patch Notes

New Features
Expand Down
12 changes: 6 additions & 6 deletions natro_macro.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ OnMessage(0x4299, "nm_setLastHeartbeat")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
if(not fileexist("nm_config.ini"))
nm_resetConfig()
VersionID:="0.7.0"
VersionID:="0.7.1"
#include *i personal.ahk
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; DISABLE ROBLOX BETA APP
Expand Down Expand Up @@ -4576,10 +4576,10 @@ nm_setReconnectMin(){
}
nm_ReconnectTimeHelp(){
global ReconnectHour, ReconnectMin
FormatTime, hourUTC, %A_NowUTC%, hh
FormatTime, hourLOC, %A_Now%, hh
FormatTime, timeUTC, %A_NowUTC%, hh:mm
FormatTime, timeLOC, %A_Now%, hh:mm
FormatTime, hourUTC, %A_NowUTC%, HH
FormatTime, hourLOC, %A_Now%, HH
FormatTime, timeUTC, %A_NowUTC%, HH:mm
FormatTime, timeLOC, %A_Now%, HH:mm
timeDiff:=hourLOC-hourUTC
convertedLocalHour:=ReconnectHour-timeDiff
if (convertedLocalHour>24)
Expand Down Expand Up @@ -16270,7 +16270,7 @@ else
msgbox bakground task took too long
global disableDayorNight, AFBrollingDice, BackpackPercentFiltered, ReconnectHour, ReconnectMin, DailyReconnect
;daily reconnect
FormatTime, RChourUTC, %A_NowUTC%, hh
FormatTime, RChourUTC, %A_NowUTC%, HH
FormatTime, RCminUTC, %A_Now%, mm
if(!DailyReconnect && ReconnectHour && ReconnectMin && ReconnectHour=RChourUTC && ReconnectMin=RCminUTC) {
DailyReconnect:=1
Expand Down

0 comments on commit 49ea9e1

Please sign in to comment.