Posts: 131
Threads: 3
Joined: Dec 2014
ok thank you very much
after i edit the script i will try it and update you the result..
Posts: 131
Threads: 3
Joined: Dec 2014
Posts: 48
Threads: 2
Joined: Dec 2014
Reputation:
0
what do i have to download for it to search zombie bases?
Posts: 228
Threads: 7
Joined: Dec 2014
Posts: 92
Threads: 3
Joined: Dec 2014
(12-31-2014, 01:17 AM)bushido-21 Wrote: @GkevinOD i have error line 453(File"C:\Pre-alpha v005\COC Bot v005.au3")
if FileExist(& $C:program File (x86) & \"Bluestacks\HD-RunApp.exe") Then if FileExist(& $C:^ERROR when au3 to exe convertion...
I think u forgot \ :
if FileExist(& $C:\program File (x86) & \"Bluestacks\HD-RunApp.exe"
--> "\" beetwen $C: and program File
Posts: 228
Threads: 7
Joined: Dec 2014
You have to actually locate the file, not everyone is the same and that's where mine is located. If you have that error, then it's probably not going to be where mine is.
Posts: 92
Threads: 3
Joined: Dec 2014
(12-31-2014, 12:55 AM)bushido-21 Wrote: ok thank you very much after i edit the script i will try it and update you the result..
(12-31-2014, 01:32 AM)GkevinOD Wrote: You have to actually locate the file, not everyone is the same and that's where mine is located. If you have that error, then it's probably not going to be where mine is.
can we use something like this?
Code:
Func _ProgramFilesDir()
Local $ProgramFileDir
Switch @OSArch
Case "X86"
$ProgramFileDir = "Program Files"
Case "X64"
$ProgramFileDir = "Program Files (x86)"
EndSwitch
Return @HomeDrive & "" & $ProgramFileDir
EndFunc ;==>_ProgramFilesDirh