Facebook
From 123, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 281
  1. // ==UserScript==
  2. // @name         ChillFarm
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2.0.1
  5. // @description  C Clicker
  6. // @author       Ercho
  7. // @match        https://*.plemiona.pl/game.php?village=*&screen=am_farm*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.     (function (){
  14.     $("a.farm_icon_c, a.farm_icon_b, a.farm_icon_a").click(function() {$(this).closest("tr").remove();});
  15.     })();
  16.  
  17. function build1(){
  18.     var x = document.createElement('button');
  19.     x.setAttribute('onclick',"function slij(){var evt = document.createEvent('MouseEvents');evt.initMouseEvent('click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var gt = document.getElementsByClassName('farm_icon_a')[1];gt.dispatchEvent(evt);var timez = parseInt(270+(Math.random()*100*Math.random()));setTimeout(slij, timez);}slij();");
  20.     x.setAttribute('style','width: 30px; height: 20px; background-color: #f00; text-align: center;');
  21.     x.innerHTML = "A";
  22.     document.getElementsByClassName('vis')[0].appendChild(x);
  23. }
  24. function build2(){
  25.     var x = document.createElement('button');
  26.     x.setAttribute('onclick',"function slij(){var evt = document.createEvent('MouseEvents');evt.initMouseEvent('click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var gt = document.getElementsByClassName('farm_icon_b')[1];gt.dispatchEvent(evt);var timez = parseInt(270+(Math.random()*100*Math.random()));setTimeout(slij, timez);}slij();");
  27.     x.setAttribute('style','width: 30px; height: 20px; background-color: #0f0; text-align: center;');
  28.     x.innerHTML = "B";
  29.     document.getElementsByClassName('vis')[0].appendChild(x);
  30. }
  31. function build3(){
  32.     var x = document.createElement('button');
  33.     x.setAttribute('onclick',"function slij(){var evt = document.createEvent('MouseEvents');evt.initMouseEvent('click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var gt = document.getElementsByClassName('farm_icon_c')[0];gt.dispatchEvent(evt);var timez = parseInt(270+(Math.random()*100*Math.random()));setTimeout(slij, timez);}slij();");
  34.     x.setAttribute('style','width: 30px; height: 20px; background-color: #00f; text-align: center;');
  35.     x.innerHTML = "C";
  36.     document.getElementsByClassName('vis')[0].appendChild(x);
  37. }
  38.  
  39. build1();
  40. build2();
  41. build3();
  42. })();