Agar Server Selector

Modifies the agar.io server select page to be useful.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Agar Server Selector
// @namespace    
// @version      1.0
// @description  Modifies the agar.io server select page to be useful.
// @author       Ununoctium118
// @match        http://agar.io
// @grant        none
// ==/UserScript==
 
// Clear the dialog box
var selector = $('#region');
 
// Load the server list
var selected;
 
var regionTable = {
    'US-Atlanta': 'US East',
    'US-Fremont': 'US West',
    'EU-London': 'Europe',
    'JP-Tokyo': 'Japan',
};
 
$.getJSON('http://m.agar.io/fullInfo', function(serverList) {
    var output = [];
    serverList.servers.sort(function (a, b) {
        var x = regionTable[a.region], y = regionTable[b.region];
        return ((x < y) ? - 1 : ((x > y) ? 1 : 0));
    });
    $.each(serverList.servers, function(index, server) {
        output.push('<option value="' + server.ip + '">' + regionTable[server.region] + ' (' + server.ip + ') (' + server.numPlayers + ' players)</option>');
    });
    selector.html(output.join(''));
});
 
 
// Add our extra onchangelistener
selector.on('change', function() {
    selected = selector.val() + ':443';
});
 
 
// Intercept requests for m.agar.io and instead return our data.
var realAjax = $.ajax;
$.ajax = function() {
    if(arguments[0] == 'http://m.agar.io/') {
        var callback = arguments[1].success;
        // The selector callback probably hasn't run yet.
        // Really should use a promise or something here.
        setTimeout(function() {
            callback(selected);
        }, 10);
    } else {
        // Use irl ajax
        return realAjax.apply(this, arguments);
    }
};