Since the developers over at Recolor made the horrible decision of not capping polls i decided to make another Recolor bot.
Should generate more than 60 bits a minute.
1.0 Preview:
Download: https://mega.co.nz/#!548g0CaR!kq2byb...hynGGTJ7U5wRsc
Current Version: 1.2
More updates to come, will probably introduce error handling in the future.Code:***Changes in 1.2 +Added a poster bot, if the bot throws an error your account does not have posting access. +Increased the speed of the poll bot by half a second. (Should now generate more than 60 bits a minute) +Added runtime timer for poll bot.
User Data Lookup:
Preview:
Download: https://mega.co.nz/#!tkMWxAoR!_cMIQx...GYeXXXkAHuXatY
Results 1 to 19 of 19
- 22 Oct. 2014 11:51pm #1
[Public Release] Recolor.me Bot + UserDataLookup
Last edited by Kitsune; 23 Oct. 2014 at 02:28pm.
There's nothing ideal about being real, there's so many flaws to cover and conceal.
- 24 Oct. 2014 01:13am #2
Using this since I had an account and haven't logged in since the day I made it. Will be running 24/7, gonna post when I get my halo :p
Spoiler:
- 24 Oct. 2014 02:03am #3
Looks pretty good. Purple GUI not really my cup of tea personally though, lol.
Also it's a tad redundant to have a feature in the bot that grabs IDs (even though it seems as though the ID is necessary to get data on the user).
Since the function is in your program that gets user IDs from a specified user, you could just make your program require the username then it could do the user ID conversion stuff in the background.
Good job on this, though.Last edited by The Unintelligible; 24 Oct. 2014 at 06:02pm.
I'm lightning on my feet
- 24 Oct. 2014 02:30am #4
Yeah, the GUI's a bit tacky.
Here are some colors for design as recommended by Google: Visual Style Guide ? Web Starter Kit
- 24 Oct. 2014 06:34pm #5
I wasn't really trying to go for a super appealing GUI, i was just bored with the standard shades of gray.
Although i do see what you mean lol.
Might update the GUI later.
@TU
Yeah i thought it's a bit redundant as well, but i personally like getting the data through user IDs. I just added the ID grabber for easier use if someone else wanted to use it. Overall though the User Data Lookup does need a little bit more work on it.
Thanks for the feedback guys!
If i get bored i'll probably update the GUIs in the future since they seem to be the biggest outstanding problem.There's nothing ideal about being real, there's so many flaws to cover and conceal.
- 29 Oct. 2014 09:20am #6
- 13 Dec. 2014 05:19pm #7
It seems they switched everything to HTTPS so my bot no longer works, and if i try fixing it,it may be a while
That being said i've disabled the bot via server side, you should now get an invalid file error.
Also the user data lookup is now obsolete as well.There's nothing ideal about being real, there's so many flaws to cover and conceal.
- 13 Dec. 2014 11:34pm #8
Just use XML HTTP requests (supports HTTPS) or anything other HTTP library that supports SSL.
I'm lightning on my feet
- 20 Dec. 2014 08:23pm #9
its fixed yet?
- 21 Dec. 2014 05:11am #10
- 21 Dec. 2014 06:44am #11
I found this code through a quick google search (assuming you're using VB.NET):
PHP Code:Dim strResponse, xmlhttp, xmlDom, returnVal
Dim strMessage
Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
xmlhttp.open "POST", "http://mysite.com?environmentId=Development", false
xmlhttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
xmlhttp.SetRequestHeader "Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, */*"
xmlhttp.SetRequestHeader "Accept-Language", "en-us"
xmlhttp.SetRequestHeader "Accept-Encoding", "gzip, deflate"
'Send the request synchronously by converting the encoding the message to be sent
xmlhttp.send "message=" & escape(strMessage)
'If the state of the request is 4 then get the response and parse it
If xmlhttp.readyState = 4 Then
'Get the response and set it to a string
strResponse = xmlhttp.responseText
'Create DOM object reference and parse the xml string
Set xmlDom = CreateObject("Msxml2.DOMDocument")
xmlDom.loadxml(strResponse)
'Echo if any error while parsing
If xmlDom.parseerror.errorcode <> 0 Then
Wscript.echo "Reason for the error:" & xmlDom.parseerror.reason
Else
retVal = xmlDom.text
Wscript.echo "Reason for the error:" & retVal
End If
End If
Now here is an example from some code I personally wrote a long time ago that needed to interact with an HTTPS url (this is AutoIt):
PHP Code:Global $oWinHTTP = ObjCreate("Microsoft.XMLHTTP") ; Initialize XMLHTTP object
; Functions
Func _HTTPRequest(ByRef $oWinHTTP, $sMethod, $sURL, $sData = "", $sReferer = "http://google.com")
$oWinHTTP.Open($sMethod, $sURL, False)
$oWinHTTP.SetRequestHeader("User-Agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5")
;$oWinHTTP.SetRequestHeader("Connection", "keep-alive")
$oWinHTTP.SetRequestHeader("Referer", $sReferer)
If $sMethod == "POST" Then $oWinHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
$oWinHTTP.Send($sData)
Return $oWinHTTP.ResponseText
EndFunc
Example in the context of code (logging into HTTPS url):
PHP Code:Func _Login($sUsername, $sPassword)
Local $sResponse
$sResponse = _HTTPRequest($oWinHTTP, "GET", "https://secure.xgenstudios.com/ballistick/payment.php?username=" & $sUsername & "&key="& _MD5($sPassword) & "&pass=1")
Return StringInStr($sResponse, 'Logged in as')
EndFunc
Hope it helped.Last edited by The Unintelligible; 21 Dec. 2014 at 06:52am.
I'm lightning on my feet
- 22 Dec. 2014 12:08am #12
Holy crap, thanks for this!
I'll have to start messing with it when i have time.
EDIT:
So actually if i just change the encoding my HTTP Wrapper uses to UTF8 it changes it to XML requests... It works fine for HTTPS
Bot re-enabled via server side, bot should auto-update to version 1.3 on startup!Last edited by Kitsune; 22 Dec. 2014 at 02:58am.
There's nothing ideal about being real, there's so many flaws to cover and conceal.
- 22 Dec. 2014 04:28pm #13
- Age
- 31
- Join Date
- Jun. 2011
- Location
- United Kingdom
- Posts
- 1,023
- Reputation
- 129
- LCash
- 0.00
I've actually only just joined the site, I may try this! Not much to lose if I get caught either way, and it'll kill my boredom. Thank you! <3
EDIT - It won't let me log in ;-;Last edited by Louphoria; 22 Dec. 2014 at 04:33pm.
I was Legend
----------xo.~+*-..-*+~.ox----------
- 22 Dec. 2014 09:23pm #14
- 07 Feb. 2015 11:00pm #15
So the bot needs a bit of work, as some things on recolor have changed.
I might just recode the bot from scratch.
We'll see what i do later when i have time, as i am saying this i'm getting ready for work lolThere's nothing ideal about being real, there's so many flaws to cover and conceal.
- 16 Jul. 2015 11:36pm #16
I loved using this bot I was shown while polls were unlimited!
Do you have any plans to write up auto Quads players, since the "Daily item" is unlimited now, so you can earn all the mini game prizes through that?
or possibly the alternative which is just the "Minigame challenge" which is just random generated minigames that have to be solved?
These are just ideas I'm throwing out there, and I have a gutt feeling they'd actually be rather difficult to write up.Last edited by Loaded; 16 Jul. 2015 at 11:39pm.
- 15 Aug. 2015 07:31am #17
When I open the file, it goes through "Checking File" I get an error every time.
- 21 Jul. 2016 06:55pm #18
how do you play this game?
- 21 Jul. 2016 07:41pm #19
- Join Date
- Apr. 2013
- Location
- Minnesota
- Posts
- 1,325
- Reputation
- 114
- LCash
- 0.00