Advertisement
Guest User

FullArt

a guest
Apr 9th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         pxls.space clicker
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        http://*/*
  8. // @grant        http://pxls.space/
  9. // ==/UserScript==
  10.  
  11. /*
  12. ---- что это?
  13. * простой скрипт для рисования/дефа рисунков на pxls.space
  14. --- как пользоваться?
  15. * открываешь pxls.space, ждешь пока прогрузится
  16. * открываешь JS консоль браузера и копипастишь туда код.
  17. * то же самое делаешь как можно в большем количестве вкладок с разными vpn
  18. * в данном примере скрипт следит за тардис и наполеоном на триколоре.
  19. * капчу придется вводить руками
  20. --- Основа скрипта тут
  21. https://github.com/dd7531/autopxls
  22. */
  23.  
  24. var script = document.createElement('script');
  25. script.src = 'https://rawgit.com/dd7531/autopxls/master/autopxls.js';
  26. script.onload = function () {
  27.     var images = [
  28.         {
  29.             title: "El Gagarino",
  30.             x: 60,
  31.             y: 526,
  32.             image: "http://i.imgur.com/mxjxBhS.png"
  33.         },
  34.         {
  35.             title: "Vsadnik",
  36.             x: 486,
  37.             y: 537,
  38.             image: "http://i.imgur.com/2q6rTTZ.png"
  39.         },
  40.         {
  41.             title: "Sobor",
  42.             x: 325,
  43.             y: 527,
  44.             image: "http://i.imgur.com/dRVTpMb.png"
  45.         },
  46.         {
  47.             title: "Joba",
  48.             x: 148,
  49.             y: 527,
  50.             image: "http://i.imgur.com/dWJsvJ2.png"
  51.         },
  52.         {
  53.             title: "TARDIS",
  54.             x: 602,
  55.             y: 463,
  56.             image: "http://i.imgur.com/wrpOqWw.png"
  57.         },
  58.         {
  59.             title: "Napoleon RIP",
  60.             x: 440,
  61.             y: 574,
  62.             image: "http://i.imgur.com/uot63Pq.png"
  63.         }
  64.     ];
  65.     AutoPXLS(images);
  66. };
  67. document.head.appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement