您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Edit attributes of your plane, like Max Throttle, Scale, and Mass.
- // ==UserScript==
- // @name GeoFS Attribute Editor
- // @namespace http://tampermonkey.net/
- // @license MIT
- // @version 0.1
- // @description Edit attributes of your plane, like Max Throttle, Scale, and Mass.
- // @author You
- // @match https://www.geo-fs.com/geofs.php
- // @icon https://www.geo-fs.com/favicon.ico
- // @grant none
- // ==/UserScript==
- /* FEATURES */
- /*
- Set minimum RPM to 10000. Sliders will be implemented later as i've already tried using them and it didn't work :/
- */
- // document.getElementById("geofs-ui-3dview").innerHTML += dragWin;
- var rpmhax = `<div style="width:100px;height:200px;background-color:grey;">
- <button onclick="geofs.aircraft.instance.setup.minRPM = 10000;geofs.aircraft.instance.setup.maxRPM = 100000">RPM 10000</button>
- </div>`
- document.body.innerHTML += rpmhax;