Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.67 KB

File metadata and controls

32 lines (23 loc) · 1.67 KB

Introduction

Cookie Clicker is a Javascript powered browser game. One mode of it involves clicking on reindeer as they appear and mov across the screen. They spawn rarely and some game achievements require 200 clicks. This is Cookie Clicker Auto Reindeer Clicker. It is a CLI C-based tool, utilising the imageMagick Wand API and X11 headers, to scan the Cookie Clicker window for reindeer, and then autoclick them.

License

This is freely available under the GPL v3.

Prerequisites

  • The system must have libmagickwand tools installed. On Ubuntu this can be installed with apt-get install libmagickwand-dev, or get the ImageMagick development rpm's from https://www.imagemagick.org/script/download.php and install these.
  • The system must have x11 utils, specifically xwininfo (most distros include this).

Build Process

To build call make on the makefile (with no parameters) in the build directory. An executable, clicker, will be created there.

Plan