Is there a way to remove or even bypass it? I'm not an expert on coding or whatever but I just thought of it and it would be really helpful to speed up tree farming.
Results 1 to 9 of 9
Thread: Gaia Captcha (Lake Kindred)
- 02 May. 2017 08:38pm #1
Gaia Captcha (Lake Kindred)
- 02 May. 2017 11:23pm #2
Moderator Bachelor of Science in Virginity
- Age
- 31
- Join Date
- Nov. 2009
- Location
- Toronto
- Posts
- 5,421
- Reputation
- 546
- LCash (Rank 3)
- 1.96
- 03 May. 2017 02:05am #3
I just thought of a solution but I can't put it into flesh. What if a program detects the captcha window and automatically refreshes the page to remove the captcha and continue farming trees? This could be integrated into a bot. I know it's ambitious, but it'll break the economy fo sho if the LK bot becomes viral.
- 03 May. 2017 02:31am #4
- Join Date
- Apr. 2013
- Location
- Minnesota
- Posts
- 1,325
- Reputation
- 114
- LCash
- 0.00
im p sure color matching was enough to solve them with reasonable accuracy.
Code:def compImg(self, bot, update): starting = 100.0 outfiturl = urlopen(str(self.outfit)) outfit_img = io.BytesIO(outfiturl.read()) outfit = ColorThief(outfit_img) # get the dominant color dominant_color = outfit.get_color(quality=1) print("dominant outfit color:", dominant_color) print("URL:", str(self.outfit)) index = 0 for item in self.thumbfile: thumburl = urlopen("http://s.cdn.gaiaonline.com/images/thumbnails/" + str(item)) thumb_img = io.BytesIO(thumburl.read()) thumbnail = ColorThief(thumb_img) dominant_color1 = thumbnail.get_color(quality=1) print("Thumbnail color:", dominant_color1) print("URL: http://s.cdn.gaiaonline.com/images/thumbnails/" + str(item)) color1_rgb = sRGBColor(dominant_color[0],dominant_color[1],dominant_color[2]) color2_rgb = sRGBColor(dominant_color1[0],dominant_color1[1],dominant_color1[2]) # Convert from RGB to Lab Color Space color1_lab = convert_color(color1_rgb, LabColor) # Convert from RGB to Lab Color Space color2_lab = convert_color(color2_rgb, LabColor) # Find the color difference delta_e = delta_e_cie2000(color1_lab, color2_lab) print(str(index), "- Delta E: ", str(delta_e)) if delta_e <= starting: starting = delta_e self.answer = str(index) print("Current Answer: ", str(self.answer)) index += 1
hope crayola isn't too mad at me for sharing this bit, since he wrote it.Last edited by Kingz V; 03 May. 2017 at 02:36am.
- 03 May. 2017 03:10am #5
- 03 May. 2017 12:05pm #6
It's a Python method, it'll require programming knowledge with Python. That or the full script is released for use.
Yes, you can get banned for that since you're cheating. Getting caught, however, is what the real question is.Last edited by Butts; 03 May. 2017 at 12:11pm.
- 04 May. 2017 11:03pm #7
Moderator Bachelor of Science in Virginity
- Age
- 31
- Join Date
- Nov. 2009
- Location
- Toronto
- Posts
- 5,421
- Reputation
- 546
- LCash (Rank 3)
- 1.96
- 29 May. 2017 12:48pm #8
It would be very hard to bypass captcha at this moment lol.
- 05 Jun. 2017 12:08am #9
lanzer said something about fixing that, so, hopefully that's out of the way soon lmao :/