Skip to content

Instantly share code, notes, and snippets.

@dododome01
Created June 24, 2022 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dododome01/1c6f115147f01f43fb3fb0a9522356e4 to your computer and use it in GitHub Desktop.
Save dododome01/1c6f115147f01f43fb3fb0a9522356e4 to your computer and use it in GitHub Desktop.
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];
WT.minigame.castSpell(spell);
setTimeout(function(){ WT.sell(520); }, 50);
setTimeout(function(){ WT.minigame.castSpell(spell); }, 300);
setTimeout(function(){ WT.buy(520); }, 350);
setTimeout(function(){ Game.UpgradesById[185].click(event); }, 400);
setTimeout(function(){ WT.minigame.lumpRefill.click(); }, 500);
setTimeout(function(){ WT.minigame.castSpell(spell); }, 550);
setTimeout(function(){ WT.sell(520); }, 600);
setTimeout(function(){ WT.minigame.castSpell(spell); }, 850);
setTimeout(function(){ WT.buy(520); }, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment