CAPTAIN SIM FORUM
MSFS2020 >> 777 Captain III >> V/S not working
https://www.captainsim.org/forum/csf.pl?num=1702219772

Message started by R73777 on Dec 10th, 2023 at 2:49pm

Title: Re: V/S not working
Post by johnkamlax on Dec 11th, 2023 at 4:50am
It's an easy fix, the only issue with my fix is the light doesn't turn on/off buthe V/S shows and you can adjust it. Here's the fix:

Go to: MSFS\Official\OneStore\asobo-vcockpits-instruments-b747-8\html_ui\Pages\VCockpit\Instruments\Airliners\B747_8\VSpeed

Open B747_8_VSpeed.js with notepad.

You'll find the following:

class B747_8_VSpeed extends Boeing_FCU.VSpeed {
    get templateID() { return "B747_8_VSpeed"; }
    shouldBeVisible() {
        return SimVar.GetSimVarValue("L:AP_VS_ACTIVE", "number") === 1;
    }
}
registerInstrument("b747-8-vspeed-element", B747_8_VSpeed);
//# sourceMappingURL=B747_8_VSpeed.js.map

Copy the following:

class B747_8_VSpeed extends Boeing_FCU.VSpeed {
    get templateID() { return "B747_8_VSpeed"; }
}
registerInstrument("b747-8-vspeed-element", B747_8_VSpeed);
//# sourceMappingURL=B747_8_VSpeed.js.map

Save it and it'll work. Make sure to make a copy of the original in case you screw up and maybe someone else can look into the missing light.

CAPTAIN SIM FORUM » Powered by YaBB 2.6.0!
YaBB Forum Software © 2000-2024. All Rights Reserved.