Download Autoit #include <IE.au3>#include <Inet.au3> HotKeySet("{F6}", "_Exit") Local $i = 1 Local $hDownload = InetGet("https://members.mybrowsercash.com/images/logo.gif", @TempDir & "\logokv.gif", 1, 1) Do Sleep(250) Until InetGetInfo($hDownload, 2) Local $nBytes = InetGetInfo($hDownload, 0) InetClose($hDownload) If FileExists(@TempDir & "\logokv.gif") Then Local $destination = (@TempDir & "\logokv.gif") SplashImageOn("MBC 2.0 By Jimmy", $destination, 250, 50) Sleep(3000) SplashOff() EndIf $Process = "MyBrowserCash.exe" If ProcessExists($Process) Then While 1 If WinExists("MyBrowserCash") Then $oIE = _IEAttach("MyBrowserCash", "embedded") Local $oBody = _IETagNameGetCollection($oIE, "body", 0) _IEDocInsertHTML($oBody, "<p><font color=green size=5>MBC is working</font>", "afterbegin") Sleep(2000) Local $oLinks = _IELinkGetCollection($oIE) Local $iNumLinks = @extended If Not IsObj($oIE) Then ExitLoop For $oLink In $oLinks If StringInStr($oLink.href, "http://www.mltdb.com") > 0 Then Local $sData = InetRead($oLink.href) Local $nBytesRead = @extended InetClose($sData) WinClose("MyBrowserCash") TrayTip("", $i, 5) $i = $i + 1 Sleep(5000) Else WinClose("MyBrowserCash") EndIf Next Else Sleep(60000) $Ads = _IECreate("http://www.google.com/search?q=make money online", 0, 0, 1) Sleep(5000) _IEQuit($Ads) EndIf WEnd Else MsgBox(0, "Not Running", $Process & " Is not running.") EndIf Func _Exit() Exit EndFunc