paulwrubel / too-many-cookies

A python helper tool to calculate statistics and suggestions on cookie clicker setups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note: A large portion of this project was written using the assisstance of GitHub Copilot. This code is, of course, reviewed and refined by me, and is thus indistinguishable from code I had written by hand.

To showcase the abilities of the plugin, sections of this readme that are generated by Copilot will be bolded.


TooManyCookies

TooManyCookies is a python project that provides statistical analysis of a Cookie Clicker save file. Additionally, it will calculate the most optimal purchase given the current save file. The goal is to maximize the number of cookies you can make with the current save file.

Usage

python tmc.py [config_file] [save_file]

The program will output clean, organized data to the console. The data will be in the form of a table, with the first column being the name of the item, and the second column being the number of times that item was purchased. (Editor's note: This is only kind of true, but I gave Copilot the W here)

Configuration

A configuration file is required. This file is a YAML file that contains information about how the program should calculate the optimal purchase.

Here is an example configuration file:

---
# This is an example configuration file.
preferred_strategy: pure
iterations: 0

Save File

The save file should be a simple txt file that contains a single line of text. This line should be the output of the "Export save" button in the Cookie Clicker game.

About

A python helper tool to calculate statistics and suggestions on cookie clicker setups

License:MIT License


Languages

Language:Python 99.6%Language:Makefile 0.4%