Skip to content

Instantly share code, notes, and snippets.

View dododome01's full-sized avatar

Dominic M. dododome01

  • Karlsruhe, Germany
View GitHub Profile
@dododome01
dododome01 / combo.js
Created June 24, 2022 22:48
Cookie Clicker Quadcast
// ==UserScript==
// @name MegaCombo
// @description Scrip for quadcast combo
// @author dododome
// @match http://orteil.dashnet.org/cookieclicker/
// ==/UserScript==
var WT = Game.Objects["Wizard tower"];
var spell = WT.minigame.spellsById[1];
@dododome01
dododome01 / cc_grimoire.py
Last active June 3, 2022 01:38
Calculates when/if Quadcast is possible in Cookie Clicker Grimoire Minigame
#! /usr/bin/python
#####Imports###########################################################################################################################
import math
from tabulate import tabulate #pip install tabulate
#####Vars##############################################################################################################################
lumpLevel = [10,50]
towerCount = [300,10000]
supreme_intellect_mod = [1,0.99,0.9,0.89]