Greasy Fork is available in English.

Arras Auto Level Up

Levels you up automatically (In enabled gamemodes)

2019-01-20 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Arras Auto Level Up
// @namespace    EFdatastuff
// @version      1.0.2
// @description  Levels you up automatically (In enabled gamemodes)
// @author       EternalFrostrOrig (@EternalFrost#0955 /u/PineappleNarwhal)
// @match        http://arras.io/
// @match        http://arras-proxy.surge.sh/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    try {
      var canvas = document.getElementsByTagName('canvas').item(0)
      function doStuff() {
          canvas.parent.emit("L")
      }
      setInterval(doStuff, 10)
    } catch(e) {}
})();