This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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] |