Walls192 Posted October 11, 2007 Posted October 11, 2007 (edited) This is my first big programe that basicaly views links from bux.to I still have to work on it but I thought I would share it, I do not wish to share the source as it took me ages and fear the people might take credit.Updated, Added Exit function so you can press ESC to exit And a Little tool tip to show how much you have earntUpdated 9/12/07, Added login function and a schedule time functionUpdated 31/12/07, Added settings function store login information and time information in a .ini file thanks to eckyecky for the help and ideas removed sleep as well runs fasterCleaned up settingsAutoit_browser_beta.au3 Edited January 1, 2008 by Walls192
ashley Posted October 11, 2007 Posted October 11, 2007 This is my first big programe that basicaly views links from bux.to I still have to work on it but I thought I would share it, I do not wish to share the source as it took me ages and fear the people might take credit.look m8 u have 14 posts maybe if you post your code we might reply no one will take credit, were not that sort of people....Maybe we can help if you post your code!p.s not many people in this fourm inlucding me dont dowload .exe's Free icons for your programs
Walls192 Posted October 12, 2007 Author Posted October 12, 2007 look m8 u have 14 posts maybe if you post your code we might reply no one will take credit, were not that sort of people....Maybe we can help if you post your code!p.s not many people in this fourm inlucding me dont dowload .exe'sThanks for pointing that out I have uploaded the script
ashley Posted October 12, 2007 Posted October 12, 2007 Thanks for pointing that out I have uploaded the scriptthanks you... ill have a look now Free icons for your programs
JustinReno Posted October 12, 2007 Posted October 12, 2007 Didn't Valik say who ever starts nagging about someone's source again he'll ban them for 3 days?
jackyyll Posted October 12, 2007 Posted October 12, 2007 Didn't Valik say who ever starts nagging about someone's source again he'll ban them for 3 days?Don't be a tattle tale
James Posted October 12, 2007 Posted October 12, 2007 Ashley, what did we say about English?look m8 u have 14 posts maybe if you post your code we might reply no one will take credit, were not that sort of people.... I know this is an online forum and all, but even so, whatever people post still needs to be read, not only by you!Anyways, Walls, thats a nice script. You could make this into a nice little security suite. Instead of alerting people when it happens, write the page to a log and then using the IE.au3 functions, you could re-write the page and display a message along the lines of:This site is blocked!-James Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
sosimple Posted November 26, 2007 Posted November 26, 2007 Thanks walls. I was trying to find something like this. Have you ever been payed from bax.to ?
eckyecky Posted December 9, 2007 Posted December 9, 2007 ive made this for other sites eg advercash daddybux paid.vg titanclick turbobux these support semi automated login just to make sure u are logged in first by semi if it has a security code it asks you to look at the page and type it in. they are based on the original script by Walls192 if anyone is interested and Walls doesn't mind ill post them eckyecky
Walls192 Posted December 9, 2007 Author Posted December 9, 2007 sorry havn't been on the forum in ages (been busy) I have another update. If any one could help me make it use less CPU then I will be grateful because as it is I had to add a Sleep in there so now it is a bit laggy.
eckyecky Posted December 10, 2007 Posted December 10, 2007 (edited) my scripts are based on Walls last version i have removed the trayicon and it automatically starts clicking when run replace username and password with yoursif the site needs a code it will prompt for oneif someone can teach me (or point me to a good example) how to display png on a form i would be very gratefulcheers to Walls192 for idea and starting pointAdvercashexpandcollapse popup#NoTrayIcon #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Run_Tidy=y #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <Constants.au3> #include <IE.au3> #include <Array.au3> #include <File.au3> #include <GUIConstants.au3> if not @Compiled Then run("AutoIt3Wrapper.au3 /in "& @ScriptFullPath) Exit EndIf ; Setup $username = "xxxxxxxxxx" $password = "xxxxxxxxxx" ; Random HotKeySet("{ESC}", "close") Local $fileLineArray Opt("TrayMenuMode", 1) $oIE = _IECreate("about:blank", 0, 0) ; Login Do _IENavigate($oIE, "http://www.advercash.net/userlogin.php") $oForm = _IEFormGetCollection($oIE, 0) $oUser = _IEFormElementGetObjByName($oForm, "username") $oPass = _IEFormElementGetObjByName($oForm, "password") ;$oCode = _IEFormElementGetObjByName($oForm,"code") ;$oAction = _IEFormElementGetObjByName($oForm,"loginsubmit") _IEFormElementSetValue($oUser, $username) _IEFormElementSetValue($oPass, $password) ;_IEFormElementSetValue($oCode,InputBox("what is the security code","enter the security code")) _IEFormSubmit($oForm) Sleep(4000) Until _IEPropertyGet($oIE, "locationurl") = "http://www.advercash.net/adverts.php" ; Deletes to avoid errors FileDelete("advercash.output.txt") FileDelete("advercash.links.txt") $var = Ping("advercash.net") If @error = 4 Then MsgBox(0, "Status", "Please Connect to the Internet") close() ElseIf @error = 1 Then MsgBox(0, "Status", "Host is offline") close() ElseIf @error = 2 Then MsgBox(0, "Status", "Host is unreachable") close() ElseIf @error = 3 Then MsgBox(0, "Status", "Bad destination") close() EndIf If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("advercash Browser - Collecting ads") Else TrayTip("advercash Browser", "Collecting ads", 5) EndIf _IENavigate($oIE, "http://www.advercash.net/adverts.php") Sleep(2000) $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href, 'viewad.php?id=') Then _ArrayAdd($Link_Array, $oLink.href) EndIf Next _FileWriteFromArray("advercash.links.txt", $Link_Array, 1) $fil = "advercash.links.txt" $fil = FileRead($fil) $fil = StringSplit($fil, @CRLF) For $i = $fil[0] To 1 Step - 1 $tempstr = StringStripWS($fil[$i], 3) If $tempstr = "" Then _ArrayDelete($fil, $i) Else If $i = 1 Then ExitLoop For $n = $i - 1 To 1 Step - 1 If $tempstr = $fil[$n] Then _ArrayDelete($fil, $i) ExitLoop EndIf Next EndIf Next $fil[0] = UBound($fil) - 1 If $fil[0] > 0 Then _FileWriteFromArray("advercash.output.txt", $fil, 1) Else MsgBox(16, "Error", "No Links Found") ProcessClose("iexplore.exe") close() EndIf Sleep(8000) FileDelete("advercash.links.txt") ; Starts Browsing ads If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("advercash Browser - Browsing ads") Else TrayTip("advercash Browser", "Browsing ads", 5) EndIf For $i = 1 To _FileCountLines("advercash.output.txt") _IENavigate($oIE, FileReadLine("advercash.output.txt", $i)) _IELoadWait($oIE) Sleep(35000) Next _IEQuit($oIE) Func close() Exit 0 EndFunc;==>closeDaddyBuxexpandcollapse popup#NoTrayIcon #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Run_Tidy=y #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <Constants.au3> #include <IE.au3> #include <Array.au3> #include <File.au3> #include <GUIConstants.au3> ; Setup $username = "xxxxxxxxxx" $password = "xxxxxxxxxx" ; Random HotKeySet("{ESC}", "close") Local $fileLineArray Opt("TrayMenuMode", 1) $oIE = _IECreate("about:blank", 0, 1) ; Login Do _IENavigate($oIE, "http://www.daddybux.com/login.php") $oForm = _IEFormGetCollection($oIE, 0) $oUser = _IEFormElementGetObjByName($oForm, "username") $oPass = _IEFormElementGetObjByName($oForm, "password") $oCode = _IEFormElementGetObjByName($oForm, "code") ;$oAction = _IEFormElementGetObjByName($oForm,"loginsubmit") _IEFormElementSetValue($oUser, $username) _IEFormElementSetValue($oPass,$password) _IEFormElementSetValue($oCode, InputBox("what is the security code", "enter the security code for DaddyBux")) _IEFormSubmit($oForm) Sleep(4000) Until _IEPropertyGet($oIE, "locationurl") = "http://www.daddybux.com/purchase100.php" ; Deletes to avoid errors FileDelete("daddybux.output.txt") FileDelete("daddybux.links.txt") $var = Ping("daddybux.com") If @error = 4 Then MsgBox(0, "Status", "Please Connect to the Internet") close() ElseIf @error = 1 Then MsgBox(0, "Status", "Host is offline") close() ElseIf @error = 2 Then MsgBox(0, "Status", "Host is unreachable") close() ElseIf @error = 3 Then MsgBox(0, "Status", "Bad destination") close() EndIf If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("daddybux Browser - Collecting ads") Else TrayTip("daddybux Browser", "Collecting ads", 5) EndIf _IENavigate($oIE, "http://www.daddybux.com/surf.php") Sleep(2000) $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href, 'view.php?ad=') Then _ArrayAdd($Link_Array, $oLink.href) EndIf Next _FileWriteFromArray("daddybux.links.txt", $Link_Array, 1) $fil = "daddybux.links.txt" $fil = FileRead($fil) $fil = StringSplit($fil, @CRLF) For $i = $fil[0] To 1 Step - 1 $tempstr = StringStripWS($fil[$i], 3) If $tempstr = "" Then _ArrayDelete($fil, $i) Else If $i = 1 Then ExitLoop For $n = $i - 1 To 1 Step - 1 If $tempstr = $fil[$n] Then _ArrayDelete($fil, $i) ExitLoop EndIf Next EndIf Next $fil[0] = UBound($fil) - 1 If $fil[0] > 0 Then _FileWriteFromArray("daddybux.output.txt", $fil, 1) Else MsgBox(16, "Error", "No Links Found") ProcessClose("iexplore.exe") close() EndIf Sleep(8000) FileDelete("daddybux.links.txt") ; Starts Browsing ads If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("daddybux Browser - Browsing ads") Else TrayTip("daddybux Browser", "Browsing ads", 5) EndIf For $i = 1 To _FileCountLines("daddybux.output.txt") _IENavigate($oIE, FileReadLine("daddybux.output.txt", $i)) _IELoadWait($oIE) Sleep(35000) Next _IEQuit($oIE) Func close() Exit 0 EndFunc;==>closePaid.vgexpandcollapse popup#NoTrayIcon #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Run_Tidy=y #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <Constants.au3> #include <IE.au3> #include <Array.au3> #include <File.au3> #include <GUIConstants.au3> ; Setup $username = "xxxxxxxxxx" $password = "xxxxxxxxxx" ; Random HotKeySet("{ESC}", "close") Local $fileLineArray Opt("TrayMenuMode", 1) $oIE = _IECreate("about:blank", 0, 1) ; Login Do _IENavigate($oIE, "http://paid.vg/login.php?r=") $oForm = _IEFormGetCollection($oIE, 0) $oUser = _IEFormElementGetObjByName($oForm, "username") $oPass = _IEFormElementGetObjByName($oForm, "password") $oCode = _IEFormElementGetObjByName($oForm, "code") $oAction = _IEFormElementGetObjByName($oForm, "loginsubmit") _IEFormElementSetValue($oUser, $username) _IEFormElementSetValue($oPass, $password) _IEFormElementSetValue($oCode, InputBox("what is the security code", "enter the security code for Paid.vg")) _IEFormSubmit($oForm) Sleep(4000) Until _IEPropertyGet($oIE, "locationurl") = "http://paid.vg/splashpage.php" ; Deletes to avoid errors FileDelete("paid.vg.output.txt") FileDelete("paid.vg.links.txt") $var = Ping("paid.vg") If @error = 4 Then MsgBox(0, "Status", "Please Connect to the Internet") close() ElseIf @error = 1 Then MsgBox(0, "Status", "Host is offline") close() ElseIf @error = 2 Then MsgBox(0, "Status", "Host is unreachable") close() ElseIf @error = 3 Then MsgBox(0, "Status", "Bad destination") close() EndIf If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("Paid.vg Browser - Collecting ads") Else TrayTip("Paid.vg Browser", "Collecting ads", 5) EndIf _IENavigate($oIE, "http://paid.vg/viewads.php") Sleep(2000) $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href, 'viewpaid.php?ad') Then _ArrayAdd($Link_Array, $oLink.href) EndIf Next _FileWriteFromArray("paid.vg.links.txt", $Link_Array, 1) $fil = "paid.vg.links.txt" $fil = FileRead($fil) $fil = StringSplit($fil, @CRLF) For $i = $fil[0] To 1 Step - 1 $tempstr = StringStripWS($fil[$i], 3) If $tempstr = "" Then _ArrayDelete($fil, $i) Else If $i = 1 Then ExitLoop For $n = $i - 1 To 1 Step - 1 If $tempstr = $fil[$n] Then _ArrayDelete($fil, $i) ExitLoop EndIf Next EndIf Next $fil[0] = UBound($fil) - 1 If $fil[0] > 0 Then _FileWriteFromArray("paid.vg.output.txt", $fil, 1) Else MsgBox(16, "Error", "No Links Found") ProcessClose("iexplore.exe") close() EndIf Sleep(8000) FileDelete("paid.vg.links.txt") ; Starts Browsing ads If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("paid.vg Browser - Browsing ads") Else TrayTip("paid.vg Browser", "Browsing ads", 5) EndIf For $i = 1 To _FileCountLines("paid.vg.output.txt") _IENavigate($oIE, FileReadLine("paid.vg.output.txt", $i)) _IELoadWait($oIE) Sleep(35000) Next _IEQuit($oIE) Func close() Exit 0 EndFunc ;==>closeTitanClicksexpandcollapse popup#NoTrayIcon #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Run_Tidy=y #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <Constants.au3> #include <IE.au3> #include <Array.au3> #include <File.au3> #include <GUIConstants.au3> ; Setup $username = "xxxxxxxxxx" $password = "xxxxxxxxxx" ; Random HotKeySet("{ESC}", "close") Local $fileLineArray Opt("TrayMenuMode", 1) $oIE = _IECreate("about:blank", 0, 0) ; Login Do _IENavigate($oIE, "http://www.titanclicks.com/userlogin.php") $oForm = _IEFormGetCollection($oIE, 0) $oUser = _IEFormElementGetObjByName($oForm, "username") $oPass = _IEFormElementGetObjByName($oForm, "password") ;$oCode = _IEFormElementGetObjByName($oForm,"code") ;$oAction = _IEFormElementGetObjByName($oForm,"loginsubmit") _IEFormElementSetValue($oUser, $username) _IEFormElementSetValue($oPass, $password) ;_IEFormElementSetValue($oCode,InputBox("what is the security code","enter the security code")) _IEFormSubmit($oForm) Sleep(4000) Until _IEPropertyGet($oIE, "locationurl") = "http://www.titanclicks.com/adverts.php" ; Deletes to avoid errors FileDelete("titanclicks.output.txt") FileDelete("titanclicks.links.txt") $var = Ping("titanclicks.com") If @error = 4 Then MsgBox(0, "Status", "Please Connect to the Internet") close() ElseIf @error = 1 Then MsgBox(0, "Status", "Host is offline") close() ElseIf @error = 2 Then MsgBox(0, "Status", "Host is unreachable") close() ElseIf @error = 3 Then MsgBox(0, "Status", "Bad destination") close() EndIf If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("titanclicks Browser - Collecting ads") Else TrayTip("titanclicks Browser", "Collecting ads", 5) EndIf _IENavigate($oIE, "http://www.titanclicks.com/adverts.php") Sleep(2000) $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href, 'viewad.php?id=') Then _ArrayAdd($Link_Array, $oLink.href) EndIf Next _FileWriteFromArray("titanclicks.links.txt", $Link_Array, 1) $fil = "titanclicks.links.txt" $fil = FileRead($fil) $fil = StringSplit($fil, @CRLF) For $i = $fil[0] To 1 Step - 1 $tempstr = StringStripWS($fil[$i], 3) If $tempstr = "" Then _ArrayDelete($fil, $i) Else If $i = 1 Then ExitLoop For $n = $i - 1 To 1 Step - 1 If $tempstr = $fil[$n] Then _ArrayDelete($fil, $i) ExitLoop EndIf Next EndIf Next $fil[0] = UBound($fil) - 1 If $fil[0] > 0 Then _FileWriteFromArray("titanclicks.output.txt", $fil, 1) Else MsgBox(16, "Error", "No Links Found") ProcessClose("iexplore.exe") close() EndIf Sleep(8000) FileDelete("titanclicks.links.txt") ; Starts Browsing ads If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("titanclicks Browser - Browsing ads") Else TrayTip("titanclicks Browser", "Browsing ads", 5) EndIf For $i = 1 To _FileCountLines("titanclicks.output.txt") _IENavigate($oIE, FileReadLine("titanclicks.output.txt", $i)) _IELoadWait($oIE) Sleep(35000) Next _IEQuit($oIE) Func close() Exit 0 EndFunc ;==>closeTurboBuxexpandcollapse popup#NoTrayIcon #Region;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Compression=4 #AutoIt3Wrapper_Run_Tidy=y #AutoIt3Wrapper_Run_Obfuscator=y #EndRegion;**** Directives created by AutoIt3Wrapper_GUI **** #Include <Constants.au3> #include <IE.au3> #include <Array.au3> #include <File.au3> #include <GUIConstants.au3> ; Setup $username = "xxxxxxxxxx" $password = "xxxxxxxxxx" ; Random HotKeySet("{ESC}", "close") Local $fileLineArray Opt("TrayMenuMode", 1) $oIE = _IECreate("about:blank", 0, 1) ; Login Do _IENavigate($oIE, "http://www.turbobux.com/userlogin.php") $oForm = _IEFormGetCollection($oIE, 0) $oUser = _IEFormElementGetObjByName($oForm, "username") $oPass = _IEFormElementGetObjByName($oForm, "password") ;$oCode = _IEFormElementGetObjByName($oForm,"code") ;$oAction = _IEFormElementGetObjByName($oForm,"loginsubmit") _IEFormElementSetValue($oUser, $username) _IEFormElementSetValue($oPass, $password) ;_IEFormElementSetValue($oCode,InputBox("what is the security code","enter the security code")) _IEFormSubmit($oForm) Sleep(4000) Until _IEPropertyGet($oIE, "locationurl") = "http://www.turbobux.com/adverts.php" ; Deletes to avoid errors FileDelete("turbobux.output.txt") FileDelete("turbobux.links.txt") $var = Ping("turbobux.com") If @error = 4 Then MsgBox(0, "Status", "Please Connect to the Internet") close() ElseIf @error = 1 Then MsgBox(0, "Status", "Host is offline") close() ElseIf @error = 2 Then MsgBox(0, "Status", "Host is unreachable") close() ElseIf @error = 3 Then MsgBox(0, "Status", "Bad destination") close() EndIf If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("turbobux Browser - Collecting ads") Else TrayTip("turbobux Browser", "Collecting ads", 5) EndIf Sleep(2000) $oLinks = _IELinkGetCollection($oIE) $iNumLinks = @extended Global $Link_Array[$iNumLinks] For $oLink In $oLinks If StringInStr($oLink.href, 'viewad.php?id=') Then _ArrayAdd($Link_Array, $oLink.href) EndIf Next _FileWriteFromArray("turbobux.links.txt", $Link_Array, 1) $fil = "turbobux.links.txt" $fil = FileRead($fil) $fil = StringSplit($fil, @CRLF) For $i = $fil[0] To 1 Step - 1 $tempstr = StringStripWS($fil[$i], 3) If $tempstr = "" Then _ArrayDelete($fil, $i) Else If $i = 1 Then ExitLoop For $n = $i - 1 To 1 Step - 1 If $tempstr = $fil[$n] Then _ArrayDelete($fil, $i) ExitLoop EndIf Next EndIf Next $fil[0] = UBound($fil) - 1 If $fil[0] > 0 Then _FileWriteFromArray("turbobux.output.txt", $fil, 1) Else MsgBox(16, "Error", "No Links Found") ProcessClose("iexplore.exe") close() EndIf Sleep(8000) FileDelete("turbobux.links.txt") ; Starts Browsing ads If @OSVersion = "WIN_NT4" Or @OSVersion = "WIN_ME" Or @OSVersion = "WIN_98" Or @OSVersion = "WIN_95" Then TraySetToolTip("turbobux Browser - Browsing ads") Else TrayTip("turbobux Browser", "Browsing ads", 5) EndIf For $i = 1 To _FileCountLines("turbobux.output.txt") _IENavigate($oIE, FileReadLine("turbobux.output.txt", $i)) _IELoadWait($oIE) Sleep(35000) Next _IEQuit($oIE) Func close() Exit 0 EndFunc ;==>close Edited December 10, 2007 by eckyecky
Walls192 Posted December 10, 2007 Author Posted December 10, 2007 my scripts are based on Walls last version i have removed the trayicon and it automatically starts clicking when run replace username and password with yoursif the site needs a code it will prompt for oneif someone can teach me (or point me to a good example) how to display png on a form i would be very gratefulcheers to Walls192 for idea and starting pointIf you are trying to embed the security code you can't do it because it changes everytime you load it, nice script but I think if you have an embedded browser like my beta version it would be better.
eckyecky Posted December 15, 2007 Posted December 15, 2007 hi heres my update currently i have only integrated Bux.to and advercash into this but autobrowser.au3 is the main file to run passwords are encrypted and stored in a ini file i am using an embedded browser object and i have a timer function the only problem at the moment is when it does a click run you are unable to do anythng else like change settings but you can still exit using escape key. try see if you like comments will be greatly appreciated. Walls192 thanks for your script if theres anything in my code u like u can use it in ursptc_auto_browse_alpha.rar
Walls192 Posted December 31, 2007 Author Posted December 31, 2007 hi heres my update currently i have only integrated Bux.to and advercash into this but autobrowser.au3 is the main file to run passwords are encrypted and stored in a ini file i am using an embedded browser object and i have a timer function the only problem at the moment is when it does a click run you are unable to do anythng else like change settings but you can still exit using escape key. try see if you like comments will be greatly appreciated.Walls192 thanks for your script if theres anything in my code u like u can use it in ursI like your settings function but I am having trouble logging into bux.to, I am going to work on it to try to improve it. I think we should both discuss ideas and make one we could put on the web for refferrals, or even money. Please get back to me if you have any Ideas.
i542 Posted December 31, 2007 Posted December 31, 2007 Wait until Valik comes... I can do signature me.
James Posted December 31, 2007 Posted December 31, 2007 This is...... s....l....o.....w I clicked Login and nothing happened. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Walls192 Posted December 31, 2007 Author Posted December 31, 2007 (edited) This is...... s....l....o.....wI clicked Login and nothing happened.That is because I had to add a sleep into the loop to reduce cpu usage, if you know any other ways please suggest ideasUpdated removed sleep for you Edited December 31, 2007 by Walls192
Tazo Posted January 1, 2008 Posted January 1, 2008 (edited) i'll try this out, i can't be sure if it works for me or not because i've already surfed all the ads; only time will tell! it seems to be working well so far, cool program Edited January 1, 2008 by Tazo
shootie Posted February 29, 2008 Posted February 29, 2008 This will get you banned, because when you navigate to the ad page it is with a blank referrer.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now