Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ogar bot update #620

Open
wants to merge 12 commits into
base: dev
Choose a base branch
from
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Agar.io-bot

*FOR EVERYONE WHO KEEPS SENDING THE ISSUES TO THIS BOT, PLEASE READ [ISSUE 616](https://github.com/Apostolique/Agar.io-bot/issues/616) FOR THE REASONS AS TO WHY APOSTOLIQUE HAS STOPPED WORKING ON THIS BOT!!! (~ Drflash55)*

The aim of the project is to create a bot that can play Agar.io

The full coding process is streamed live on http://www.twitch.tv/apostolique
Expand All @@ -25,7 +28,7 @@ https://www.youtube.com/watch?v=Zvq38nmCm1s - Install Tutorial.

https://www.youtube.com/watch?v=x2-DFRnEFBU - Android Tutorial.

#Hotkeys
# Hotkeys

* Press 'R' if you want to toggle the line and dot drawing.
* Press 'T' if you want to use the manual controls.
Expand Down
30 changes: 2 additions & 28 deletions launcher.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ SOFTWARE.*/
// @name AposLauncher
// @namespace AposLauncher
// @include http://agar.io/*
// @version 5.041
// @version 5.042
// @grant none
// @author http://www.twitch.tv/apostolique
// ==/UserScript==
var aposLauncherVersion = 5.041;

var showAd = true;
var aposLauncherVersion = 5.042;

Number.prototype.mod = function(n) {
return ((this % n) + n) % n;
Expand Down Expand Up @@ -82,30 +80,6 @@ function getLatestCommit() {
}
getLatestCommit();

function addAd() {
window.google_ad_client = "ca-pub-5878021809689194";
window.google_ad_slot = "1479874665";
window.google_ad_width = 300;
window.google_ad_height = 250;

window.jQuery(".side-container:last").append("<div class='agario-panel'><center id='aposAd'></center></div>");
var aposAd = document.getElementById('aposAd');
var w = document.write;
document.write = function(content) {
aposAd.innerHTML = content;
document.write = w;
};

var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//pagead2.googlesyndication.com/pagead/show_ads.js';
document.body.appendChild(script);
}

if (showAd) {
addAd();
}

(function(c, e) {
function vc() {
for (var a = document.cookie.split(";"), b = 0; b < a.length; b++) {
Expand Down