Cookie clicker hacks

Choose what level do you want

  1. // ==UserScript==
  2. // @name Cookie clicker hacks
  3. // @version 0.1
  4. // @author ReF
  5. // @namespace Cookie clicker hacks
  6. // @description Choose what level do you want
  7. // @match http://orteil.dashnet.org/*
  8. // @require https://code.jquery.com/jquery-3.3.1.js
  9. // @icon http://images2.wikia.nocookie.net/__cb20130827014914/cookieclicker/images/5/5a/PerfectCookie.png
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. var level = 4000;
  14. function updaAll(poi) {
  15. Game.Objects['Cursor'].amount = poi;
  16. Game.Objects['Grandma'].amount = poi;
  17. Game.Objects['Farm'].amount = poi;
  18. Game.Objects['Mine'].amount = poi;
  19. Game.Objects['Factory'].amount = poi;
  20. Game.Objects['Bank'].amount = poi;
  21. Game.Objects['Temple'].amount = poi;
  22. Game.Objects['Wizard tower'].amount = poi;
  23. Game.Objects['Shipment'].amount = poi;
  24. Game.Objects['Alchemy lab'].amount = poi;
  25. Game.Objects['Portal'].amount = poi;
  26. Game.Objects['Time machine'].amount = poi;
  27. Game.Objects['Antimatter condenser'].amount = poi;
  28. Game.Objects['Prism'].amount = poi;
  29. Game.Objects['Chancemaker'].amount = poi;
  30. }
  31. setTimeout(function(){
  32. updaAll(level);
  33. }, 1000);