Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name pxls.space clicker
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match http://*/*
- // @grant http://pxls.space/
- // ==/UserScript==
- /*
- ---- что это?
- * простой скрипт для рисования/дефа рисунков на pxls.space
- --- как пользоваться?
- * открываешь pxls.space, ждешь пока прогрузится
- * открываешь JS консоль браузера и копипастишь туда код.
- * то же самое делаешь как можно в большем количестве вкладок с разными vpn
- * в данном примере скрипт следит за тардис и наполеоном на триколоре.
- * капчу придется вводить руками
- --- Основа скрипта тут
- https://github.com/dd7531/autopxls
- */
- var script = document.createElement('script');
- script.src = 'https://rawgit.com/dd7531/autopxls/master/autopxls.js';
- script.onload = function () {
- var images = [
- {
- title: "El Gagarino",
- x: 60,
- y: 526,
- image: "http://i.imgur.com/mxjxBhS.png"
- },
- {
- title: "Vsadnik",
- x: 486,
- y: 537,
- image: "http://i.imgur.com/2q6rTTZ.png"
- },
- {
- title: "Sobor",
- x: 325,
- y: 527,
- image: "http://i.imgur.com/dRVTpMb.png"
- },
- {
- title: "Joba",
- x: 148,
- y: 527,
- image: "http://i.imgur.com/dWJsvJ2.png"
- },
- {
- title: "TARDIS",
- x: 602,
- y: 463,
- image: "http://i.imgur.com/wrpOqWw.png"
- },
- {
- title: "Napoleon RIP",
- x: 440,
- y: 574,
- image: "http://i.imgur.com/uot63Pq.png"
- }
- ];
- AutoPXLS(images);
- };
- document.head.appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement