|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
||||
|
||||
|
Major Arena Update and Reset
Hey guys,
We just rolled a whole bunch of new changes live into the arena, including some new monster abilities, critical hits against monsters, and even captcha (sorry bot makers). For all details, see the changelog here Also, in about 10 minutes, we will be resetting the arena to level the playing field. Levels, money, items will all be reset. Have fun! |
|
#2
|
||||
|
||||
|
Quote:
My idea! My idea! :P |
|
#3
|
||||
|
||||
|
You mean all of us will be back at level 1 and all the money I have in the bank will be lost !?
![]() Oh, and excuse my ignorance, but what is 'captcha' ? Is it like capture !?
__________________
The No Ma'am commandments: 1.) It is O.K. to call hooters 'knockers' and sometimes snack trays 2.) It is wrong to be French 3.) It is O.K. to put all bad people in a giant meat grinder 4.) Lawyers, see rule .3. 5.) It is O.K. to drive a gas guzzler if it helps you get babes 6.) Everyone should car pool but me. 7.) Bring back the word 'stewardesses 8.) Synchronized swimming is not a sport 9.) Mud wrestling is a sport. |
|
#4
|
||||
|
||||
|
Quote:
Captcha's are those images on forms where you have to type in what they say [used to stop bots submitting forms.] Oh, and resetting everything sucks! I was just about to get level 30 and buy a Katana on ASP Free. ![]()
__________________
Support requests via PM will be ignored! |
|
#5
|
||||
|
||||
|
Awww...
I was getting rich, but I guess resetting is a good idea if it all works better. Captcha? Where's the fun in that? Yeah, I was writing a bot script for fun - but I never got near to actually battling with it. At least I have more free time now ![]() By the way, nice move taking out the newlines! It was an interesting challenge ![]()
__________________
. Web Dev Cheat Sheets :: Flash 8 LiveDocs :: PHP Manual :: MySQL Manual :: My Zodiac/13Moon Mod for SMF :: Compare Game Prices "All matter is merely energy condensed to a slow vibration. We are all one consciousness experiencing itself - subjectively. There is no such thing as death, life is only a dream. We are the imaginations of ourselves." - Bill Hicks "Truth is hidden in the subtle nature of the heart of everything, although it is invisible. One cannot see it from inside and neither from the surface. One can only live and experience it." - Heart Sutra |
|
#6
|
||||
|
||||
|
No kidding!!!! I caught the captcha a little while back, then just now got:
Quote:
And do not forget to go to the update your character option! You will probably like having more than 0/0 HP! ![]()
__________________
According to Sod's Law, buttered toast lands butter side down, when dropped. Per nature, cats always land on their feet. So, what happens when you strap buttered toast to the back of a cat and throw it out a window?. |
|
#7
|
||||
|
||||
|
Do Player vs Player only count toward Stats now?
|
|
#9
|
||||
|
||||
|
Quote:
That captcha doesn't look too hard. From what I've read about captcha, the two keys to making them hard to break are including background noise (even a small amount) and varying the vertical position of each character. This captcha does not do the latter, and has no black pixels in the background noise, so I ought to be able to filter out the former. Now if I can find a character recognition component for .Net.... But I can take a hint. No bot for me. It was fun while it lasted.
__________________
Primary Forums: .Net Development, MS-SQL, C Programming VB.Net: It's not your father's Visual Basic. [Moving to ASP.Net] | [.Net Dos and Don't for VB6 Programmers] |
|
#10
|
||||
|
||||
|
Quote:
exactly what i thought, that captcha is easy to crack, just desaturate it, crank up the contrast, then compare each letter in your known font to that (if you apply the right filters, you can get a clean image to use and a pixel for pixel comparison will work), the font is easy to figure out, and the size is constant, adding a small random rotation with random placement and a bit of blurring would help a lot with that [edit] appears they are not generated on the fly, i already got a repeated captcha, suggesting a simple md5 will do Last edited by edman007 : January 12th, 2007 at 02:23 PM. |
|
#11
|
||||
|
||||
|
I don't know about blurring or rotation, you want it to stay human readable. The two simple suggestions I had would be enough- you could even use a static background for the noise because people aren't going to notice it doesn't change. Here's a simple example:
It should be just about as readable, and should have a smaller file size and generate faster because there's only two colors- black and white. [edit] for some reason I can't get the link to the image to work, so here it is another way: http://lh6.google.com/image/jcoehoorn/RafzCSldU3I/AAAAAAAAAB4/BE3L9zyNMDc/Captcha1.JPG Last edited by f'lar : January 12th, 2007 at 02:52 PM. |