Make a bot for a running dino in Chrome

Written by alik.chebotar | Published 2017/06/13
Tech Story Tags: google-chrome | bots | chrome | dotnet

TLDRvia the TL;DR App

Not so long ago I desired to break the record in a mini-game in Chrome browser. If someone does not know, if you do not have access to the Internet and your browser is Chrome — press the space bar or, in case of mobile phones, tap on the screen and a mini-game appears to launch.

Let’s start creating it. The principle of the bot is that we parse the pixel color at a certain distance from the character in the loop and check if the color of the pixel is equal to the color of the cactus, then we jump. Else — just keep running (do nothing).

To begin with, lets find the right pixel. In my case, this pixel is on coordinates: “775x250”. I take the correct pixel by one above the highest hillock on the road and at a distance from the character derived by trial and error. Also should be noted that my screen resolution is 1920x1080 21.5" and if you have different, it will work crookedly.So, lets create a console application in VS.

First, we declare the variables for the pixel coordinates.

public static int x = 775;public static int y = 250;

Then connect some DLL’s to the job.

[DllImport("user32.dll")]public static extern IntPtr GetDC(IntPtr hwnd);

[DllImport("user32.dll")]public static extern int ReleaseDC(IntPtr hwnd, IntPtr hDC);

[DllImport("gdi32.dll")]public static extern uint GetPixel(IntPtr hDC, int x, int y);

Now lets add some code for the handler.

IntPtr hDC = GetDC(IntPtr.Zero);while (true) {uint pixel = GetPixel(hDC, x, y);if (pixel == 5460819) {SendKeys.SendWait("{UP}");}}

The code is taken in an infinite loop.

if (pixel == 5460819)

This means that when the color of the pixel is equal to the color of the cactus in the Decimal encoding, the up arrow is pressed.

SendKeys.SendWait("{UP}");

Then we need to connect the two links.

using System.Diagnostics;using System.Windows.Forms;

At the moment, the dino easily overcomes 500 game meters, and then it is trapped in the sight of birds and night. To solve these problems, I will write the following article. Good luck!

UPDATE: You don’t have to disconnect to play the game — just enter chrome://dino/ in the address bar.

❤ If this post was helpful, please hit the little heart! (and follow me on Twitter)


Published by HackerNoon on 2017/06/13