NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

// ==UserScript== // @name op-client.tk // @namespace bots for agar // @version 2.0 // @description ... // @author SizRex // @icon64 http://imasters.org.ru/agar/agar_allys_ext_favicon.png // @icon64URL http://imasters.org.ru/agar/agar_allys_ext_favicon.png // @icon http://imasters.org.ru/agar/agar_allys_ext_favicon.png // @match http://agar.io/* // @run-at document-start // @grant none // ==/UserScript== setTimeout(function() { function e() { var e = localStorage.getItem("cachedVanilla"), t = null; if (e) { try { t = JSON.parse(e) } catch (e) { console.assert(!1, e) } t && t.src && (window.eval(t.src), console.log("%c[VANILLA] loaded from cache...", "color: darkorange")) } }! function(t, a) { var o = document.createElement("script"); o.type = "text/javascript", o.charset = "utf-8", o.readyState ? o.onreadystatechange = function() { "loaded" != o.readyState && "complete" != o.readyState || (o.onreadystatechange = null, a && a()) } : (document.body && document.body.setAttribute("data-vanilla-core", t), a && (o.onload = a, o.onerror = e)), o.src = t + "?ts=" + ~~(Date.now() / 1e3 / 60), document.getElementsByTagName("head")[0].appendChild(o) }("http://imasters.org.ru/agar/js/vanilla.core.js", function() { console.info("[VANILLA] inject success...") class Client { constructor() { this.botServerIP = 'ws://35.197.228.173:8081'; this.botServerStatus = ''; this.agarServer = ''; this.botNick = ''; this.UUID = ''; this.botAmount = 500; this.moveInterval = null; this.ws = null; this.reconnect = true; this.addListener(); this.connect(); } connect() { this.ws = new WebSocket(this.botServerIP); this.ws.binaryType = 'arraybuffer'; this.ws.onopen = this.onopen.bind(this); this.ws.onmessage = this.onmessage.bind(this); this.ws.onclose = this.onclose.bind(this); this.ws.onerror = this.onerror.bind(this); } onopen() { console.log('Connection to bot server open'); $('#serverStatus').text('Connected'); this.sendUUID(); this.startMoveInterval(); } onmessage(msg) { let buf = new DataView(msg.data); let offset = 0; let opcode = buf.getUint8(offset++); if ($("#reconnectButton").prop('disabled', false)) { $("#reconnectButton").prop('disabled', true); } switch (opcode) { case 0: { let addClasses = ''; let removeClasses = ''; switch (buf.getUint8(offset++)) { case 0: this.botServerStatus = 'Max сonnections'; this.reconnect = false; break; case 1: this.botServerStatus = 'Invalid Data'; this.reconnect = false; break; case 2: this.botServerStatus = 'IP limit'; this.reconnect = false; break; case 3: this.botServerStatus = 'auth...'; break; case 4: this.botServerStatus = 'Ready'; $('#toggleButton').replaceWith(`<button id='toggleButton' onclick='window.client.startBots();' class='btn btn-success'>Start Bots</button>`); $("#botCounter").html("0/0"); window.bots = []; break; case 5: this.botServerStatus = 'UUID not auth'; this.reconnect = false; break; case 6: this.botServerStatus = 'Getting proxies'; break; case 7: this.botServerStatus = 'Bots started!'; break; case 8: this.botServerStatus = 'Auth error!'; this.reconnect = false; break; case 9: this.botServerStatus = 'Invalid server'; break; case 10: this.botServerStatus = 'Not party server.'; $('#toggleButton').replaceWith(`<button id='toggleButton' onclick='window.client.startBots();' class='btn btn-success'>Start Bots</button>`); break; case 11: this.botServerStatus = 'Coins are over!'; this.reconnect = false; break; case 12: this.botServerStatus = 'Server in maintenance...'; this.reconnect = false; break; case 13: this.totalUsers = buf.getUint8(offset++, true); $("#userStatus").css("display", "block"); $("#usersCounter").text(this.totalUsers); break; } $("#serverStatus").text(this.botServerStatus); } break; case 1: { let spawnedBots = buf.getUint16(offset, true); offset += 2; let connectedBots = buf.getUint16(offset, true); offset += 2; let maxBots = buf.getUint16(offset, true); offset += 2; let coins = buf.getFloat64(offset, true); offset += 2; if (connectedBots >= maxBots) { $("#botCounter").html(maxBots + "/" + maxBots); } else { $("#botCounter").html(connectedBots + "/" + maxBots); } $('#coinsCounter').html(`${coins}`); } break; case 2: { window.bots = []; let numBots = buf.getUint16(offset, true); offset += 2; for (let i = 0; i < numBots; i++) { let xPos = buf.getInt32(offset, true); offset += 4; let yPos = buf.getInt32(offset, true); offset += 4; window.bots.push({ "xPos": xPos, "yPos": yPos }); } } break; } } onclose() { console.log('Connection to bot server closed.'); $("#reconnectButton").prop('disabled', false); if (this.reconnect) setTimeout(this.connect.bind(this), 150); if (this.moveInterval) clearInterval(this.moveInterval); if (!this.reconnect) return; $('#serverStatus').text('Connecting...'); } onerror() {} sendUUID() { let buf = this.createBuffer(2 + this.UUID.length); buf.setUint8(0, 0); for (let i = 0; i < this.UUID.length; i++) buf.setUint8(1 + i, this.UUID.charCodeAt(i)); this.send(buf); } startMoveInterval() { this.moveInterval = setInterval(() => { let pos = window.getMousePos(); this.sendPos(pos.x, pos.y); }, 30); } startBots() { let buf = this.createBuffer(6 + window.vanilla.server.addr.length + 2 * this.botNick.length); let offset = 0; buf.setUint8(offset++, 2); for (let i = 0; i < window.vanilla.server.addr.length; i++) buf.setUint8(offset++, window.vanilla.server.addr.charCodeAt(i)); buf.setUint8(offset++, 0); for (let i = 0; i < this.botNick.length; i++) { buf.setUint16(offset, this.botNick.charCodeAt(i), true); offset += 2; } buf.setUint16(offset, 0, true); offset += 2; buf.setUint16(offset, this.botAmount, true); this.send(buf); $('#toggleButton').replaceWith(`<button id='toggleButton' onclick='window.client.stopBots();' class='btn btn-danger'>Stop Bots</button>`); } sendPos(xPos, yPos) { let buf = this.createBuffer(9); buf.setUint8(0, 4); buf.setInt32(1, xPos, true); buf.setInt32(5, yPos, true); this.send(buf); } split() { this.send(new Uint8Array([5])); } eject() { this.send(new Uint8Array([6])); } addListener() { document.addEventListener('mousemove', event => { this.clientX = event.clientX; this.clientY = event.clientY; }); } sendNickUpdate() { let buf = this.createBuffer(3 + 2 * this.botNick.length); let offset = 0; buf.setUint8(offset++, 7); for (let i = 0; i < this.botNick.length; i++) { buf.setUint16(offset, this.botNick.charCodeAt(i), true); offset += 2; } this.send(buf); } stopBots() { this.send(new Uint8Array([3])); } send(data) { if (!this.ws || this.ws.readyState !== WebSocket.OPEN) return; this.ws.send(data, { binary: true }); } createUUID() { const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; let token = ''; for (let i = 0; i < 3; i++) { for (let a = 0; a < 7; a++) token += possible.charAt(Math.floor(Math.random() * possible.length)); token += '-'; } token = token.substring(0, token.length - 1); localStorage.setItem('agarUnlimited2UUID', token); return token; } createBuffer(len) { return new DataView(new ArrayBuffer(len)); } sUUID(a) { if (a) { $("#UUID").text(localStorage.getItem('agarUnlimited2UUID')); } else if (!a) { $("#UUID").text("hover for show"); } } } class GUITweaker { constructor() { this.removeElements(); this.addGUI(); this.finishInit(); let check = setInterval(() => { if (document.readyState == "complete") { clearInterval(check); setTimeout(() => { this.addBotGUI(); window.client.botMode = localStorage.getItem('botMode'); let UUID = localStorage.getItem('agarUnlimited2UUID'); $('#agarUnlimitedToken').val(UUID); }, 1500); } }, 100); } addBotGUI() { const botAmount = localStorage.getItem('botAmount') || 500; const botMode = localStorage.getItem('botMode'); $('head').append(`<style type="text/css">.agario-panel,.shop-blocker,#mainui-grid{border-top: 5px solid #09f4ff; background-image: url("http://cdn.ogario.ovh/static/img/pattern.png"); background-repeat: repeat; background-position: top center;}</style>`); $('.partymode-info').remove(); setTimeout(function() { $('#mainui-ads').append(`<div class="agario-panel" style="width: 335px";><center><h3>op-client.tk</h3></center><input onkeypress="return event.charCode >= 48 && event.charCode <= 57"onchange="localStorage.setItem('botAmount', this.value);window.client.botAmount=this.value;"id="botAmount"maxlength="3"class="form-control"placeholder="Bot Amount"value="${botAmount}"></input><br></span><button id="toggleButton" onclick="window.client.startBots();" class="btn btn-success">Start Bots</button><button onclick="if(!window.client.reconnect&&window.client.ws.readyState!==1){window.client.reconnect=true;window.client.connect();}else{}" class="btn btn-success" id="reconnectButton" style="float:right;">Reconnect</button></div> <div>`); },5000); } removeElements() { $('#advertisement').remove(); $('#bannerCarousel').remove(); $('#user-id-tag').remove(); } addGUI() { $("body").append(`<div style="position:fixed; min-width: 235px; z-index:9999; min-height: 100px; max-width: 900px; max-height: 200px"><div id="botSector" style="min-width: 25px;color:#fff; min-height: 25px;background: #333;max-width: 200px; max-height: 200px; border-radius: 10px"><div id="botText" style="margin-left: 10px;color:#fff0; width: 49px; height: 53; background: url('https://i.imgur.com/WZdqjIs.png') no-repeat;background-position-y: 1px;background-size: 45%">_<span style="color: #fff; margin-left: 15px; ">Minions:</span><span style="color: #fff; margin-left: 5px;"id="botCounter">0/0</span></div></div><div id="botSector" style="min-width: 25px;color:#fff; min-height: 25px;background: #333;max-width: 200px; max-height: 200px; border-radius: 10px; margin-top: 5px"><div id="botText" style="margin-left: 10px;color:#fff0; width: 49px; height: 53; background: url('https://i.imgur.com/bIUuG5a.png') no-repeat;background-position-y: 1px;background-size: 45%">_<span style="color: #fff; margin-left: 15px; ">Coins:</span><span style="color: #fff; margin-left: 5px;"id="coinsCounter">0</span></div></div><div id="botSector" style="min-width: 25px;color:#fff; min-height: 25px;background: #333;max-width: 200px; max-height: 200px; border-radius: 10px; margin-top: 5px"><div id="botText" style="margin-left: 10px;color:#fff0; width: 100%; background: url('https://i.imgur.com/F8B58GB.png') no-repeat;background-position-y: 1px;background-size: 11%">_<span style="color: #fff; margin-left: 15px; ">Status:</span><span style="color: #fff; margin-left: 5px;"id="serverStatus">Waiting</span></div></div><div id="userStatus" style="display: none;min-width: 25px;color:#fff; min-height: 25px;background: #333;max-width: 200px; max-height: 200px; border-radius: 10px; margin-top: 5px"><div id="botText" style="margin-left: 10px;color:#fff0; width: 100%; background: url('https://i.imgur.com/H9UAQ5Q.png') no-repeat;background-position-y: 1px;background-size: 11%">_<span style="color: #fff; margin-left: 15px; ">Users right now:</span><span style="color: #fff; margin-left: 5px;"id="usersCounter">0</span></div></div><div id="UUIDSector" style="text-align: center;min-width: 25px;color:#fff; min-height: 25px;background: #333;max-width: 900px; max-height: 200px; border-radius: 10px; margin-top: 5px"><span style="color: #fff;">User token ( UUID )</span><span onmouseover="window.client.sUUID(true);" disabled onmouseout="window.client.sUUID(false);" style="color: #fff; margin-left: -10px;display:block;" class="label label-info" id="UUID">hover for show</span></div></div></div>`); } finishInit() { window.client.botMode = localStorage.getItem('botMode'); window.client.botAmount = localStorage.getItem('botAmount') >>> 0; window.client.botNick = localStorage.getItem('botNick'); let UUID = localStorage.getItem('agarUnlimited2UUID'); $('#agarUnlimitedToken').val(UUID); } } class Macro { constructor() { this.ejectDown = false; this.stopped = false; this.speed = 15; this.addKeyHooks(); } addKeyHooks() { this.onkeydown(); } onkeydown() { document.addEventListener('keydown', function(event) { console.log(event.keyCode, event.which); switch (event.keyCode || event.which) { case 87: window.core.eject(); break; case 88: client.split(); break; case 67: client.eject(); break; } }.bind(this)); } eject() { if (this.ejectDown) { window.core.eject(); setTimeout(this.eject.bind(this), this.speed); } } } setTimeout(function() { window.mouseX = 0; window.mouseY = 0; document.addEventListener('mousemove', evt => { window.mouseX = evt.clientX - window.innerWidth / 2; window.mouseY = evt.clientY - window.innerHeight / 2; }); window.getMousePos = function() { let x = window.vanilla.player.x - (window.vanilla.map.x1 + window.vanilla.map.width / 2), y = window.vanilla.player.y - (window.vanilla.map.y1 + window.vanilla.map.height / 2); return { x: x + window.mouseX / window.vanilla.settings.scale, y: y + window.mouseY / window.vanilla.settings.scale }; } window.client = new Client(); new Macro(); if (!localStorage.getItem('agarUnlimited2UUID')) localStorage.setItem('agarUnlimited2UUID', window.client.createUUID()); if (!localStorage.getItem('botMode')) localStorage.setItem('botMode', 'FEEDER'); if (!localStorage.getItem('botNick')) localStorage.setItem('botNick', ''); if (!localStorage.getItem('botAmount')) localStorage.setItem('botAmount', 500); if (!localStorage.getItem('extraZoom')) localStorage.setItem('extraZoom', true); window.client.UUID = localStorage.getItem('agarUnlimited2UUID'); new GUITweaker(); }, 12000); }) }, 0);
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.