arras.io fov changer by KarstenKirsche

custom fov for arras.io!

  1. // ==UserScript==
  2. // @name arras.io fov changer by KarstenKirsche
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.4
  5. // @description custom fov for arras.io!
  6. // @author You
  7. // @match https://arras.io/
  8. // @icon https://www.google.com/s2/favicons?domain=arras.io
  9. // @grant none
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. // with this script, you get a higher fov!
  14.  
  15. let lock = 0;
  16. document.addEventListener('keydown', function(event) {
  17. if (event.code === "Keyx" && !lock) {
  18. Array.prototype.shift = new Proxy(Array.prototype.shift, {
  19. apply(shift, array, args) {
  20. if (array[0] === 'u') {
  21. array[4] = array[4] * 5;
  22. lock = 1;
  23. }
  24. return shift.apply(array, args);
  25. }
  26. });
  27. }
  28. });
  29.  
  30.  
  31.  
  32. (function() {
  33. 'use strict';
  34. alert("Injected Hacks by KastenKirsche");
  35. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址