Skip to content

Commit 943eed2

Browse files
committed
Merge branch 'release/v1.0.9'
2 parents d80f6cc + e6f2fa0 commit 943eed2

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

SelectMultiBotRun.Exe

0 Bytes
Binary file not shown.

SelectMultiBotRun.au3

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#AutoIt3Wrapper_UseUpx=y
77
#AutoIt3Wrapper_Res_Comment=Made by Fliegerfaust, Edited for MultiBotRun by ProMac
88
#AutoIt3Wrapper_Res_Description=SelectMultiBotRun for MultiBotRun
9-
#AutoIt3Wrapper_Res_Fileversion=1.0.8.0
9+
#AutoIt3Wrapper_Res_Fileversion=1.0.9.0
1010
#AutoIt3Wrapper_Res_LegalCopyright=Fliegerfaust, edited by ProMac
1111
#AutoIt3Wrapper_Run_Tidy=y
1212
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
@@ -47,7 +47,7 @@
4747

4848
Global $g_sBotFile = "multibot.run.exe"
4949
Global $g_sBotFileAU3 = "multibot.run.au3"
50-
Global $g_sVersion = "1.0.8"
50+
Global $g_sVersion = "1.0.9"
5151
Global $g_sDirProfiles = @MyDocumentsDir & "\Profiles.ini"
5252
Global $g_hGui_Main, $g_hGui_Profile, $g_hGui_Emulator, $g_hGui_Instance, $g_hGui_Dir, $g_hGui_Parameter, $g_hGUI_AutoStart, $g_hGUI_Edit, $g_hListview_Main, $g_hLst_AutoStart, $g_hLog, $g_hProgress, $g_hBtn_Shortcut, $g_hBtn_AutoStart, $g_hContext_Main
5353
Global $g_hListview_Instances, $g_hLblUpdateAvailable
@@ -185,25 +185,31 @@ Func GUI_Main()
185185

186186
_GUICtrlStatusBar_SetText($g_hLog, "Creating new Setup")
187187
WinSetOnTop($g_hGui_Main, "", $WINDOWS_ONTOP)
188+
DebugLog("Creating new Setup")
188189

189190
Do
190191
GUISetState(@SW_DISABLE, $g_hGui_Main)
191192
$g_aGuiPos_Main = WinGetPos($g_hGui_Main)
192193
_GUICtrlStatusBar_SetText($g_hLog, "Select Profile")
194+
DebugLog("=== GUI_Profile ===")
193195
$bSetupStopped = GUI_Profile()
194196
If $bSetupStopped Then ExitLoop
195197
GUICtrlSetData($g_hProgress, 20)
198+
DebugLog("=== GUI_Emulator ===")
196199
$bSetupStopped = GUI_Emulator()
197200
If $bSetupStopped Then ExitLoop
198201
GUICtrlSetData($g_hProgress, 40)
202+
DebugLog("=== GUI_Instance ===")
199203
$bSetupStopped = GUI_Instance()
200204
If $bSetupStopped Then ExitLoop
201205
GUICtrlSetData($g_hProgress, 60)
206+
DebugLog("=== GUI_DIR ===")
202207
$bSetupStopped = GUI_DIR()
203208
If $bSetupStopped Then ExitLoop
204209
GUICtrlSetData($g_hProgress, 80)
205210
$bSetupStopped = GUI_PARAMETER()
206211
If $bSetupStopped Then ExitLoop
212+
DebugLog("=== Setup Created ===")
207213
_GUICtrlStatusBar_SetText($g_hLog, "Setup Created!")
208214
Until 1
209215

@@ -309,7 +315,7 @@ Func GUI_Instance()
309315
GUISetState(@SW_HIDE, $g_hGui_Instance)
310316

311317
Switch $g_sSelectedEmulator
312-
Case "BlueStacks", "BlueStacks5"
318+
Case "BlueStacks"
313319
Return
314320
Case "Bluestacks5"
315321
GUISetState(@SW_SHOW, $g_hGui_Instance)
@@ -1040,9 +1046,10 @@ EndFunc ;==>GetNoxRtPath
10401046

10411047
Func GetBlueStacksPath()
10421048
$sBlueStacksPath = RegRead($HKLM & "\SOFTWARE\BlueStacks_nxt", "InstallDir")
1049+
DebugLog(" $sBlueStacksPath ?" & $sBlueStacksPath)
10431050
$sPlusMode = RegRead($HKLM & "\SOFTWARE\BlueStacks_nxt\", "Engine") = "plus"
1044-
$sFrontend = "HD-Frontend.exe"
1045-
If $sPlusMode Then $sFrontend = "HD-Plus-Frontend.exe"
1051+
$sFrontend = "HD-Player.exe"
1052+
If $sPlusMode Then $sFrontend = "HD-Plus-Player.exe"
10461053
If $sBlueStacksPath = "" And FileExists(@ProgramFilesDir & "\BlueStacks_nxt\" & $sFrontend) = 1 Then
10471054
$sBlueStacksPath = @ProgramFilesDir & "\BlueStacks_nxt\"
10481055
EndIf
@@ -1091,8 +1098,8 @@ Func IsAndroidInstalled($sAndroid)
10911098
DebugLog("BlueStacks")
10921099
$sPath = GetBlueStacksPath()
10931100
$bPlusMode = RegRead($HKLM & "\SOFTWARE\BlueStacks_nxt\", "Engine") = "plus"
1094-
$sFile = "HD-Frontend.exe"
1095-
If $bPlusMode Then $sFile = "HD-Plus-Frontend.exe"
1101+
$sFile = "HD-Player.exe"
1102+
If $bPlusMode Then $sFile = "HD-Plus-Player.exe"
10961103
Case "iTools"
10971104
DebugLog("iTools")
10981105
$sPath = GetiToolsPath()

SelectMultiBotRun_Info.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[General]
2-
DisplayVers=1.0.8
2+
DisplayVers=1.0.9
33
[Changelog]
4-
Title=Whats new in 1.0.8 ?
5-
Message=- LDPalyer compatibility.
6-
Date=17th January 2024
4+
Title=Whats new in 1.0.9 ?
5+
Message=- Fixed Bluestacks path issues.
6+
Date=10th March 2024

0 commit comments

Comments
 (0)