forked from swampmo/DC-10-30
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKC-10A-set.xml
91 lines (74 loc) · 2.25 KB
/
KC-10A-set.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8" ?>
<!-- McDonnell Douglas DC-10 -->
<!-- Aircraft property settings specific to the KC-10A -->
<PropertyList include="DC-10-main.xml">
<sim>
<description>McDonnell Douglas KC-10A (tanker)</description>
<flight-model>yasim</flight-model>
<aero>DC-10-30</aero>
<variant-of>DC-10-30</variant-of>
<model>
<path>Aircraft/DC-10-30/Models/KC-10A.xml</path>
<livery>
<file>Blank-tanker</file>
</livery>
</model>
<weight n="1">
<name>Fuel</name>
</weight>
<menubar>
<default>
<menu n="100">
<label>McDonnell Douglas KC-10A</label>
<item n="100">
<label>Extend/retract tanker boom</label>
<binding>
<command>nasal</command>
<script>
DC10.doors.boom.toggle();
</script>
</binding>
</item>
</menu>
</default>
</menubar>
<multiplay>
<refuel>
<type>boom</type>
</refuel>
</multiplay>
</sim>
<instrumentation>
<!-- Radar for air-to-air refueling capability (required for receiving fuel only) -->
<radar>
<range type="int" archive="y">200</range>
<minimized type="bool" archive="y">false</minimized>
</radar>
</instrumentation>
<systems>
<refuel>
<type>boom</type>
<serviceable type="bool">true</serviceable>
</refuel>
</systems>
<input>
<keyboard>
<key n="6">
<name>Ctrl-F</name>
<desc>Extend/retract tanker boom</desc>
<binding>
<command>nasal</command>
<script>
DC10.doors.boom.toggle();
</script>
</binding>
</key>
</keyboard>
</input>
<tanker type="bool">false</tanker>
<nasal>
<aar>
<file>Aircraft/Generic/aar.nas</file>
</aar>
</nasal>
</PropertyList>