Merge branch 'master' of https://www.github.com/it0uchpods/A320Family
This commit is contained in:
commit
6504c5b93c
3 changed files with 20 additions and 1 deletions
BIN
Models/Liveries/A321/DLH.png
Normal file
BIN
Models/Liveries/A321/DLH.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 460 KiB |
13
Models/Liveries/A321/DLH.xml
Normal file
13
Models/Liveries/A321/DLH.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
|
||||||
|
<PropertyList>
|
||||||
|
<sim>
|
||||||
|
<model>
|
||||||
|
<livery>
|
||||||
|
<name>Lufthansa</name>
|
||||||
|
<texture>Liveries/A321/DLH.png</texture>
|
||||||
|
</livery>
|
||||||
|
</model>
|
||||||
|
</sim>
|
||||||
|
</PropertyList>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# IT AUTOFLIGHT System Controller by Joshua Davidson (it0uchpods/411).
|
# IT AUTOFLIGHT System Controller by Joshua Davidson (it0uchpods/411).
|
||||||
# V3.0.0 Build 111
|
# V3.0.0 Build 112
|
||||||
# This program is 100% GPL!
|
# This program is 100% GPL!
|
||||||
|
|
||||||
print("IT-AUTOFLIGHT: Please Wait!");
|
print("IT-AUTOFLIGHT: Please Wait!");
|
||||||
|
@ -278,6 +278,8 @@ var vertical = func {
|
||||||
} else if (vertset == 7) {
|
} else if (vertset == 7) {
|
||||||
setprop("/it-autoflight/output/vert", 7);
|
setprop("/it-autoflight/output/vert", 7);
|
||||||
setprop("/it-autoflight/mode/arm", " ");
|
setprop("/it-autoflight/mode/arm", " ");
|
||||||
|
var altinput = getprop("/it-autoflight/input/alt");
|
||||||
|
setprop("/it-autoflight/internal/alt", altinput);
|
||||||
togasel();
|
togasel();
|
||||||
thrustmode();
|
thrustmode();
|
||||||
alandt.stop();
|
alandt.stop();
|
||||||
|
@ -315,6 +317,10 @@ setlistener("/it-autoflight/output/vert", func {
|
||||||
if (vertm == 1) {
|
if (vertm == 1) {
|
||||||
altcaptt.start();
|
altcaptt.start();
|
||||||
} else if (vertm == 4) {
|
} else if (vertm == 4) {
|
||||||
|
altcaptt.start();
|
||||||
|
} else if (vertm == 5) {
|
||||||
|
altcaptt.start();
|
||||||
|
} else if (vertm == 7) {
|
||||||
altcaptt.start();
|
altcaptt.start();
|
||||||
} else {
|
} else {
|
||||||
altcaptt.stop();
|
altcaptt.stop();
|
||||||
|
|
Reference in a new issue