Arena Frag Changer Script (Client-side)

Change your Arena-Frag to any value you want without being a reaper or killing reapers in the Arena (Client-sided Visual)

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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         Arena Frag Changer Script (Client-side)
// @namespace    https://greasyfork.org/en/users/1353377-kingbelisariusiv
// @version      1.4
// @description  Change your Arena-Frag to any value you want without being a reaper or killing reapers in the Arena (Client-sided Visual)
// @author       King Belisarius IX
// @match        *://*.evoworld.io/*
// @grant        none
// @license      MIT
// ==/UserScript==
let x = Number(prompt("Pick a number to get it's Arena Frags"));
function e() {
game.me.arenaFrags = x;
}
setInterval(e,0)
console.log(`Updated arena frags for ${game.me.nick}: ${x}`);