Hey
So, as you know, I made an installer
When I'm at the download part, everything is fine... For me
But for others, the .rar archive is damaged/broken when they try to open it.
I checked mediafire and the archive is oki.
It works for me. I can't imagine what's wrong.
Code:
And the button which activate function:
So, as you know, I made an installer
When I'm at the download part, everything is fine... For me
But for others, the .rar archive is damaged/broken when they try to open it.
I checked mediafire and the archive is oki.
It works for me. I can't imagine what's wrong.
Code:
[ autoit ]
Func _Install() ProgressOn("", "Downloading. | Size of file: 348.53" & " KB", "0%") For $i = 0 To 100 Step 1 Sleep(300) ProgressSet($i, $i & "%") If $i = 50 Then InetGet("http://205.196.121.51/gpraaudhl1tg/1zcda3cfooqdebs", @DesktopDir & "/%5Bx%5D+Bypass+by+Hybrid+v1.1.zip",1) EndIf If $i = 70 Then $sFileOld = @DesktopDir & "\%5Bx%5D+Bypass+by+Hybrid+v1.1.zip" $sFileRenamed = @DesktopDir & "\[x]Bypass by Hybrid v1.1.zip" FileMove($sFileOld, $sFileRenamed) EndIf Next ProgressSet(100, "", "Enjoy It!") Sleep(1000) ProgressOff() ShellExecute("[x]Bypass by Hybrid v1.1.zip", "", @DesktopDir) Exit EndFunc
And the button which activate function:
[ autoit ]