GeoFS Attribute Editor

Edit attributes of your plane, like Max Throttle, Scale, and Mass.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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;