GeoFS Attribute Editor

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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