您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Y - Double Split -|- U - Triple Split -|- T - 16 Split -|- E - Feed
// ==UserScript== // @name Agar.io Feed Macro + Split Hotkeys + Rip Ads // @namespace Double Split, Triple Split, 16 Split Hotkeys And Quicker Feeding // @version 8.5 // @description Y - Double Split -|- U - Triple Split -|- T - 16 Split -|- E - Feed // @author Silf // @match http://agar.io/* // @grant none // @run-at document-end // ==/UserScript== document.getElementById("instructions").innerHTML += "<center><span class='text-muted'><span data-itr='instructions_e'> Press <b>E</b> for macro feed</span></span></center>"; document.getElementById("instructions").innerHTML += "<center><span class='text-muted'><span data-itr='instructions_u'> Press <b>Y</b> to Double Split</span></span></center>"; document.getElementById("instructions").innerHTML += "<center><span class='text-muted'><span data-itr='instructions_y'> Press <b>U</b> to Triple Split</span></span></center>"; document.getElementById("instructions").innerHTML += "<center><span class='text-muted'><span data-itr='instructions_t'> Press <b>T</b> to 16 Split</span></span></center>"; load(); function load() { } (function() { var amount = 4; var duration = 50; var overwriting = function(evt) { if (evt.keyCode === 89) { // Change 89[Y] To Whichever Keycode You Want To Change The Double Split HotKey for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 32}); // 32 - Space Bar window.onkeyup({keyCode: 32}); }, i * duration); } } }; window.addEventListener('keydown', overwriting); })(); (function() { var amount = 6; var duration = 50; var overwriting = function(evt) { if (evt.keyCode === 85) { // Change 85[U] To Whichever Keycode You Want To Change The Triple Split HotKey for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 32}); // 32 - Space Bar window.onkeyup({keyCode: 32}); }, i * duration); } } }; window.addEventListener('keydown', overwriting); })(); (function() { var amount = 8; var duration = 50; var overwriting = function(evt) { if (evt.keyCode === 84) { // Change 84[T] To Whichever Keycode You Want To Change The 16 Split HotKey for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 32}); // 32 - Space Bar window.onkeyup({keyCode: 32}); }, i * duration); } } }; window.addEventListener('keydown', overwriting); })(); (function() { var amount = 6; var duration = 50; var overwriting = function(evt) { if (evt.keyCode === 69) { // Change 69[E] To Whichever Keycode You Want To Change The Quick Feeding Macro for (var i = 0; i < amount; ++i) { setTimeout(function() { window.onkeydown({keyCode: 87}); // 87 - W window.onkeyup({keyCode: 87}); }, i * duration); } } }; window.addEventListener('keydown', overwriting); })(); $('#advertisement, #agario-web-incentive, .agario-promo, .diep-cross, .us-elections').hide().css({ 'visibility': 'hidden' }); $('#region').val('').css({ 'display': 'block' }); $('#adsBottom').remove(); $('#advertisement, #agario-web-incentive, .agario-promo, .diep-cross, .us-elections, .agario-promo-container').on('show', function() { setTimeout(function() { $('#advertisement, #agario-web-incentive, .agario-promo, .diep-cross, .us-elections, .agario-promo-container').hide(); }, 50); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址