Advertisement
TROLERMASTERH

Awful Cookies

Jun 8th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Awful Cookies Cheats
  2. //Global Variables
  3. var autoClicker = setInterval(Game.ClickCookie, 1000000);
  4. //Creating elements
  5. function createcolorchoice() {
  6.     var input = document.createElement("input");
  7.     input.setAttribute("id", "color");
  8.     input.setAttribute("type", "color");
  9.         input.setAttribute("value", "#ffffff");
  10.             document.getElementById("Cheats").appendChild(input);
  11.     }
  12.     function createrange() {
  13.     var input = document.createElement("input");
  14.     input.setAttribute("id", "cookieclicks");
  15.     input.setAttribute("type", "range");
  16.         input.setAttribute("max", "1000");
  17.                 input.setAttribute("style", "transform: rotateY(180deg); width: 150px;");
  18.     input.setAttribute("min", "0.1");
  19.         input.setAttribute("value", "500");
  20.             document.getElementById("Cheats").appendChild(input);
  21.     }
  22.     function createbutton10() {
  23.     var button = document.createElement("button");
  24.     button.setAttribute("id", "button10");
  25.     button.setAttribute("onclick", "antilag()");
  26.         button.setAttribute("class", "Cheatbutton");
  27.     var t = document.createTextNode("Antilag ON");       // Create a text node
  28. button.appendChild(t);                                // Append the text to <button>
  29.             document.getElementById("Cheats").appendChild(button);
  30.     }
  31.     function createbutton9() {
  32.     var button = document.createElement("button");
  33.     button.setAttribute("id", "button9");
  34.     button.setAttribute("onclick", "unstyle()");
  35.         button.setAttribute("class", "Cheatbutton");
  36.     var t = document.createTextNode("Remove Colour");       // Create a text node
  37. button.appendChild(t);                                // Append the text to <button>
  38.             document.getElementById("Cheats").appendChild(button);
  39.     }
  40. function createbutton() {
  41.     var button = document.createElement("button");
  42.     button.setAttribute("id", "button");
  43.     button.setAttribute("onclick", "hack()");
  44.         button.setAttribute("class", "Cheatbutton");
  45.     var t = document.createTextNode("Make all buildings free");       // Create a text node
  46. button.appendChild(t);                                // Append the text to <button>
  47.             document.getElementById("Cheats").appendChild(button);
  48.     }
  49.     function createselect() {
  50.     var select = document.createElement("select");
  51.     select.setAttribute("id", "styletype");
  52.             document.getElementById("Cheats").appendChild(select);
  53.             backgroundcookie()
  54.             cookie()
  55.             menu()
  56.             store()
  57.             menu2()
  58.     }
  59. //Creating the options for the select
  60.     function store()
  61.     {
  62.         var option = document.createElement("option");
  63.     option.setAttribute("value", "sectionRight");
  64.     option.innerHTML = "Store"
  65.             document.getElementById("styletype").appendChild(option);
  66.     }
  67.     function menu2()
  68.     {
  69.         var option = document.createElement("option");
  70.     option.setAttribute("value", "sectionMiddle");
  71.     option.innerHTML = "Main Background"
  72.             document.getElementById("styletype").appendChild(option);
  73.     }
  74.     function menu()
  75.     {
  76.         var option = document.createElement("option");
  77.     option.setAttribute("value", "menu");
  78.     option.innerHTML = "Menu"
  79.             document.getElementById("styletype").appendChild(option);
  80.     }
  81.     function cookie()
  82.     {
  83.         var option = document.createElement("option");
  84.     option.setAttribute("value", "bigCookie");
  85.     option.innerHTML = "Big Cookie"
  86.             document.getElementById("styletype").appendChild(option);
  87.     }
  88.     function backgroundcookie()
  89.     {
  90.       var option = document.createElement("option");
  91.     option.setAttribute("value", "backgroundLeftCanvas");
  92.     option.innerHTML = "Background Behind Cookie"
  93.             document.getElementById("styletype").appendChild(option);
  94.            
  95.     }
  96.     function createbutton8() {
  97.     var button = document.createElement("button");
  98.     button.setAttribute("id", "button8");
  99.     button.setAttribute("onclick", "stylecookie()");
  100.         button.setAttribute("class", "Cheatbutton");
  101.     var t = document.createTextNode("Change colour of...");       // Create a text node
  102. button.appendChild(t);                                // Append the text to <button>
  103.             document.getElementById("Cheats").appendChild(button);
  104.     }
  105.     function createbutton7() {
  106.     var button = document.createElement("button");
  107.     button.setAttribute("id", "button7");
  108.     button.setAttribute("onclick", "setname()");
  109.         button.setAttribute("class", "Cheatbutton");
  110.     var t = document.createTextNode("Custom Bakery Name");       // Create a text node
  111. button.appendChild(t);                                // Append the text to <button>
  112.             document.getElementById("Cheats").appendChild(button);
  113.     }
  114.     function createbutton3() {
  115.     var button = document.createElement("button");
  116.             button.setAttribute("class", "Cheatbutton");
  117.     button.setAttribute("id", "button1");
  118.     button.setAttribute("onclick", "hack2()");
  119.     var t = document.createTextNode("Spawn Golden Cookie");       // Create a text node
  120. button.appendChild(t);                                // Append the text to <button>
  121.             document.getElementById("Cheats").appendChild(button);
  122.     }
  123.     function createbutton6() {
  124.     var button = document.createElement("button");
  125.     button.setAttribute("id", "button6");
  126.     button.setAttribute("onclick", "hack5()");
  127.         button.setAttribute("class", "Cheatbutton");
  128.         var t = document.createTextNode("Party Mode ON");       // Create a text node
  129. button.appendChild(t);                                // Append the text to <button>
  130.             document.getElementById("Cheats").appendChild(button);
  131.     }
  132.     function createbutton4() {
  133.     var button = document.createElement("button");
  134.             button.setAttribute("class", "Cheatbutton");
  135.     button.setAttribute("id", "button1");
  136.     button.setAttribute("onclick", "hack3()");
  137.     var t = document.createTextNode("Ruin the fun!");       // Create a text node
  138. button.appendChild(t);                                // Append the text to <button>
  139.             document.getElementById("Cheats").appendChild(button);
  140.     }
  141.     function createinput() {
  142.     var button = document.createElement("input");
  143.     button.setAttribute("id", "input");
  144.         button.setAttribute("type", "number");
  145.             document.getElementById("Cheats").appendChild(button);
  146.     }
  147.     function creatediv() {
  148.     var div = document.createElement("div");
  149.     div.setAttribute("id", "Cheats");
  150.         div.setAttribute("style", "position: fixed; bottom: 0; right: 0; display: none;");
  151.             document.getElementById("bakeryNameAnchor").appendChild(div);
  152.     }
  153.     function creatediv2() {
  154.     var div = document.createElement("div");
  155.     div.setAttribute("id", "show");
  156.         div.setAttribute("style", "position: fixed; bottom: 605px; right: 215px;");
  157.             document.getElementById("bakeryNameAnchor").appendChild(div);
  158.             createshowbutton()
  159.     }
  160.     function creatediv3() {
  161.     var div = document.createElement("div");
  162.     div.setAttribute("id", "showoptions");
  163.         div.setAttribute("style", "position: fixed; bottom: 605px; right: 18px;");
  164.             document.getElementById("bakeryNameAnchor").appendChild(div);
  165.             createoptionsbutton()
  166.     }
  167.     function creatediv4() {
  168.     var div = document.createElement("div");
  169.     div.setAttribute("id", "Options");
  170.         div.setAttribute("style", "position: fixed; bottom: 0; right: 0; display: none;");
  171.             document.getElementById("bakeryNameAnchor").appendChild(div);
  172.     }
  173.     function createoptionsbutton() {
  174.     var button = document.createElement("button");
  175.     button.setAttribute("id", "optionsmenubutton");
  176.             button.setAttribute("class", "Cheatbutton");
  177.                         button.setAttribute("style", "width: 100px;");
  178.         button.setAttribute("onclick", "thememenu()");
  179.     var t = document.createTextNode("Show Options");       // Create a text node
  180. button.appendChild(t);
  181.             document.getElementById("showoptions").appendChild(button);
  182.     }
  183.     function createshowbutton() {
  184.     var button = document.createElement("button");
  185.     button.setAttribute("id", "cheatmenu");
  186.             button.setAttribute("class", "Cheatbutton");
  187.         button.setAttribute("onclick", "cheatmenu()");
  188.     var t = document.createTextNode("Show Cheat");       // Create a text node
  189. button.appendChild(t);
  190.             document.getElementById("show").appendChild(button);
  191.     }
  192.         function createbutton2() {
  193.     var button = document.createElement("button");
  194.             button.setAttribute("class", "Cheatbutton");
  195.     button.setAttribute("id", "button1");
  196.     button.setAttribute("onclick", "setCookies()");
  197.     var t = document.createTextNode("Set Cookies");       // Create a text node
  198. button.appendChild(t);                                // Append the text to <button>
  199.             document.getElementById("Cheats").appendChild(button);
  200.     }
  201.     function createbutton5() {
  202.     var button = document.createElement("button");
  203.             button.setAttribute("class", "Cheatbutton");
  204.     button.setAttribute("id", "button5");
  205.     button.setAttribute("onclick", "hack4()");
  206.     var t = document.createTextNode("Auto Clicker ON");       // Create a text node
  207. button.appendChild(t);                                // Append the text to <button>
  208.             document.getElementById("Cheats").appendChild(button);
  209.             //Warning it loaded
  210.     }
  211.     function Welcome()
  212.     {
  213.         window.alert("Awful Cookie Cheats Loaded")
  214.     }
  215.     //Running the functions
  216.     Welcome()
  217.     stylemystuff()
  218.     creatediv2()
  219.     creatediv3()
  220.     creatediv4()
  221.     creatediv()
  222.     createbutton()
  223.     createbutton7()
  224.     createbutton8()
  225.     createcolorchoice()
  226.     createbutton9()
  227.     createselect()
  228.         createbutton3()
  229.     createinput()
  230. createbutton2()
  231. createbutton4()
  232. createbutton5()
  233. createrange()
  234. createbutton6()
  235. createbutton10()
  236. //Hack functions
  237. function hack3()
  238. {
  239.     Game.RuinTheFun()
  240. }
  241. function setname()
  242. {
  243.         var name = document.getElementById("bakeryName")
  244.                               var newname = prompt("What would you like to be called?", "");
  245.     if (newname != null) {
  246. name.innerHTML = "" + newname
  247.     }
  248. }
  249. function unstyle()
  250. {
  251.             var id = document.getElementById("styletype").value;
  252.             var newid = document.getElementById("" + id)
  253.     newid.setAttribute("style", "");
  254.     }
  255. function stylecookie()
  256. {
  257.             var id = document.getElementById("styletype").value;
  258.             var newid = document.getElementById("" + id)
  259.            
  260.   var color = document.getElementById("color").value;
  261.     if (color != null) {      // Create a "class" attribute
  262.     newid.setAttribute("style", "background-color: " + color + ";");
  263.     }
  264. }
  265. function hack4()
  266. {
  267.     document.getElementById("cookieclicks").disabled = true;
  268.     var clicks = document.getElementById("cookieclicks").value;
  269.     var button = document.getElementById("button5")
  270.     button.innerHTML = "Auto Clicker OFF"
  271.     button.setAttribute("onclick", "unhack4()");
  272.         autoClicker = setInterval(Game.ClickCookie, clicks);
  273. }
  274. function unhack4()
  275. {
  276.     clearInterval(autoClicker);
  277.  document.getElementById("cookieclicks").disabled = false;
  278.     var clicks = document.getElementById("cookieclicks").value;
  279.     var button = document.getElementById("button5")
  280.     button.innerHTML = "Auto Clicker ON"
  281.     button.setAttribute("onclick", "hack4()");  
  282. }
  283. function hack2()
  284. {
  285.     Game.goldenCookie.time = 0;
  286. Game.goldenCookie.spawn();
  287. }
  288. function hack5()
  289. {
  290.     var button = document.getElementById("button6")
  291.     Game.PARTY = true;
  292.     button.innerHTML = "Party Mode OFF"
  293.     button.setAttribute("onclick", "unhack5()");
  294.     }
  295.     function unhack5()
  296. {
  297.     var button = document.getElementById("button6")
  298.     Game.PARTY = false;
  299.     button.innerHTML = "Party Mode ON"
  300.     button.setAttribute("onclick", "hack5()");
  301.     }
  302.     function cheatmenu()
  303.     {
  304.      var button = document.getElementById("cheatmenu")
  305.     var div = document.getElementById("Cheats")
  306.     button.innerHTML = "Hide Cheat"
  307.     button.setAttribute("onclick", "cheatmenu2()");
  308.     div.setAttribute("style", "position: fixed; bottom: 0; right: 0;");
  309.     }
  310.     function thememenu()
  311.     {
  312.      var button = document.getElementById("optionsmenubutton")
  313.     var div = document.getElementById("Options")
  314.     button.innerHTML = "Hide Options"
  315.     button.setAttribute("onclick", "thememenu2()");
  316.     div.setAttribute("style", "position: fixed; bottom: 0; right: 0;");
  317.     }
  318.     function thememenu2()
  319.     {
  320.      var button = document.getElementById("optionsmenubutton")
  321.     var div = document.getElementById("Options")
  322.     button.innerHTML = "Show Options"
  323.     button.setAttribute("onclick", "thememenu()");
  324.     div.setAttribute("style", "position: fixed; bottom: 0; right: 0; display: none;");
  325.     }
  326.       function cheatmenu2()
  327.     {
  328.      var button = document.getElementById("cheatmenu")
  329.     var div = document.getElementById("Cheats")
  330.     button.innerHTML = "Show Cheat"
  331.     button.setAttribute("onclick", "cheatmenu()");
  332.     div.setAttribute("style", "position: fixed; bottom: 0; right: 0; display: none;");
  333.     }
  334.     function unantilag()
  335.     {
  336.         Game.fps = 30;
  337.         var button = document.getElementById("button10")
  338.     button.innerHTML = "Antilag ON"
  339.     button.setAttribute("onclick", "antilag()");
  340.     }
  341.     function antilag()
  342.     {
  343.         Game.fps = 60;
  344.         var button = document.getElementById("button10")
  345.     button.innerHTML = "Antilag OFF"
  346.     button.setAttribute("onclick", "unantilag()");
  347.     }
  348. function hack()
  349. {
  350.     Game.ObjectsById.forEach(function (e) {
  351.     e.basePrice = 0;
  352.     e.refresh();
  353. });
  354.  
  355. Game.storeToRebuild = 1;
  356. }
  357. function setCookies()
  358. {
  359. var cookies  = document.getElementById("input").value;
  360.     Game.Earn( + cookies);
  361. }
  362. //Styling
  363. function stylemystuff()
  364. {
  365. var css = '.Cheatbutton {' +
  366.    ' position: relative;' +
  367.     'background-color: #0099ff;' +
  368.     'border: none;' +
  369.    'color: #FFFFFF;' +
  370.     'text-align: center;' +
  371.     '-webkit-transition-duration: 0.4s; /* Safari */' +
  372.     'transition-duration: 0.4s;' +
  373.     'text-decoration: none;' +
  374.     'overflow: hidden;' +
  375.     'cursor: pointer;' +
  376. '}' +
  377.  
  378. '.Cheatbutton:after {' +
  379.     'content: "";' +
  380.     'background: #000099;' +
  381.     'display: block;' +
  382.     'position: absolute;' +
  383.     'padding-top: 300%;' +
  384.     'padding-left: 350%;' +
  385.     'margin-left: -20px!important;' +
  386.     'margin-top: -120%;' +    
  387.     'opacity: 0;' +
  388.     'transition: all 0.8s' +
  389. '}' +
  390.  
  391. '.Cheatbutton:active:after {' +
  392.     'padding: 0;' +
  393.     'margin: 0;' +
  394.     'opacity: 1;' +
  395.     'transition: 0s' +
  396. '}' +
  397. '#color {' +
  398.     'background-color: #0099ff;' +
  399. '}' +
  400.  
  401. '#styletype {' +
  402.     'background-color: #0099ff;' +
  403.     'color: #ffffff;' +
  404.     'font-weight: bold;' +
  405.     'font-size: 15px;' +
  406. '}' +
  407.  
  408. '#input {' +
  409.     'background-color: #0099ff;' +
  410.     'color: #ffffff;' +
  411.     'font-weight: bold;' +
  412.     'font-size: 12px;' +
  413. '}' +
  414. 'button.Cheatbutton {' +
  415.     'height: 35px;' +
  416.     'font-weight: bold;' +
  417.     'font-size: 15px;' +
  418. '}' +
  419.  
  420. '#styletype {' +
  421.     'height: 35px;' +
  422. '}' +
  423. '#input {' +
  424.     'height: 30px;' +
  425. '}' +
  426.  
  427. '#color {' +
  428.     'padding-left: 2px;' +
  429.     'padding-bottom: 7px;' +
  430.     'height: 25px;' +
  431. '}' +
  432. '#input {' +
  433.     'font-size: 15px;' +
  434. '}',
  435.     head = document.head || document.getElementsByTagName('head')[0],
  436.     style = document.createElement('style');
  437.  
  438. style.type = 'text/css';
  439. if (style.styleSheet){
  440.   style.styleSheet.cssText = css;
  441. } else {
  442.   style.appendChild(document.createTextNode(css));
  443. }
  444.  
  445. head.appendChild(style);
  446. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement