Bots outside of hacker.org?

Discussion about hacker.org's server
Post Reply
Besere
Posts: 12
Joined: Sat Mar 12, 2011 12:58 pm

Bots outside of hacker.org?

Post by Besere »

Hello, I have made a bot for runaway robot and finished all 513 levels.

I want to know how would I make bots for other games flash games that doesn't give you parameters like the puzzles in hacker.org.

For example, how would I go about making a bot for robot unicorn attack?
I have no clue on how to start making such a bot, like how would I even get data from that flash game and how would I input commands to that game.

If someone can give me some tips, or point me in the right direction to further my skills in making bots, that would be great.

Btw, I use Java.
AMindForeverVoyaging
Forum Admin
Posts: 497
Joined: Sat May 28, 2011 9:14 am
Location: Germany

Re: Bots outside of hacker.org?

Post by AMindForeverVoyaging »

Besere wrote:that doesn't give you parameters like the puzzles in hacker.org.
Well, having no interface/API to interact with certainly is a big obstacle.

For Flash games, you could try software that can decompile the SWF files, e.g.:

Adobe SWF Investigator
Sothink SWF Decompiler
Chocoholic
Posts: 44
Joined: Mon Feb 16, 2009 4:11 pm
Location: UK

Post by Chocoholic »

If you want to go the "dumb" way, you can just script the user interface. In other words: just make a screenshot (or get single pixel values from the operating system), interpret it, then generate mouse movements, clicks, key presses. Repeat several times per second.

While this is not as "cool" as actually "hacking" the flash game, for example to send fake scores to the server, it is less likely to get you banned. Because, like, you actually play the game. Sort of. Plus, if you're serious about it, you can even learn a bit about real computer vision algorithms, text recognition, etc.

I used to do this a lot on the arcade games on dotapickup.com when I was really bored, but sadly they removed the games, along with all my highscores. :(

For a really easy way to get started, have a look at the AutoIt3 language. It's pretty slow but includes an awful lot of UI scripting functions. That's its purpose after all. Writing algorithms in it feels a bit awkward though. And try to start with a simple color-matching game or the like. Robot unicorn attack might be a bit heavy for a start. ;)
Post Reply