c172-common.ac
-3.0
-0.065
0
0
0
0
0
0
Damage
Effects/damage/damage.xml
0.0
0.0
0.0
0
PontoonDamage
Effects/damage/pontoondamage.xml
0.0
0.0
0.0
0
SkiDamage
Effects/damage/skidamage.xml
0.0
0.0
0.0
0
Bushkit
Effects/bushkit/bushkit.xml
0.0
0.0
0.0
0
Pontoon
Effects/pontoon/pontoon.xml
0.0
0.0
0.0
0
Skis
Effects/skis/skis.xml
0.0
0.0
0.0
0
var livery_update = aircraft.livery_update.new(
"Aircraft/c172p/Models/Liveries", 10,
func { print("c172p livery update") });
var rplayer = cmdarg();
# Beacon and strobes lighting
var lighting_beacon_enabled = rplayer.getNode("sim/multiplay/generic/int[12]").getPath();
var lighting_strobes_enabled = rplayer.getNode("sim/multiplay/generic/int[13]").getPath();
var lighting_beacon_state = rplayer.getNode("sim/model/c172p/lighting/beacon").getPath();
var lighting_strobes_state = rplayer.getNode("sim/model/c172p/lighting/strobes").getPath();
aircraft.light.new(lighting_beacon_state, [0.10, 0.90], lighting_beacon_enabled);
aircraft.light.new(lighting_strobes_state, [0.015, 1.985], lighting_strobes_enabled);
io.include("Aircraft/c172p/Nasal/registration_number.nas");
# Registration number
var regnum_path = rplayer.getNode("sim/multiplay/generic/string[0]").getPath();
setlistener(regnum_path, func (node) {
set_registration_number(rplayer, node.getValue());
}, 1, 0);
# Passengers
var pax_state_path = rplayer.getNode("sim/multiplay/generic/int[16]").getPath();
var co_pilot = rplayer.initNode("pax/co-pilot/present", 0, "BOOL");
var left_passenger = rplayer.initNode("pax/left-passenger/present", 0, "BOOL");
var right_passenger = rplayer.initNode("pax/right-passenger/present", 0, "BOOL");
var pilot = rplayer.initNode("pax/pilot/present", 0, "BOOL");
setlistener(pax_state_path, func (node) {
var state = node.getValue();
co_pilot.setBoolValue(bits.test(state, 0));
left_passenger.setBoolValue(bits.test(state, 1));
right_passenger.setBoolValue(bits.test(state, 2));
pilot.setBoolValue(bits.test(state, 3));
}, 1, 0);
# Securing attributes
var securing_state_path = rplayer.getNode("sim/multiplay/generic/int[9]").getPath();
var pitot_cover = rplayer.initNode("sim/model/c172p/securing/pitot-cover-visible", 0, "BOOL");
var cowl_plugs = rplayer.initNode("sim/model/c172p/securing/cowl-plugs-visible", 0, "BOOL");
var wheel_chock = rplayer.initNode("sim/model/c172p/securing/chock-visible", 0, "BOOL");
var left_tiedown = rplayer.initNode("sim/model/c172p/securing/tiedownL-visible", 0, "BOOL");
var right_tiedown = rplayer.initNode("sim/model/c172p/securing/tiedownR-visible", 0, "BOOL");
var tail_tiedown = rplayer.initNode("sim/model/c172p/securing/tiedownT-visible", 0, "BOOL");
setlistener(securing_state_path, func (node) {
var state = node.getValue();
pitot_cover.setBoolValue(bits.test(state, 0));
wheel_chock.setBoolValue(bits.test(state, 1));
left_tiedown.setBoolValue(bits.test(state, 2));
right_tiedown.setBoolValue(bits.test(state, 3));
tail_tiedown.setBoolValue(bits.test(state, 4));
cowl_plugs.setBoolValue(bits.test(state, 5));
}, 1, 0);
# Make sure human occupants are always visible in remote aircraft
rplayer.initNode("sim/model/occupants", 1, "BOOL");
# Disable ALS 3D shadow for remote aircraft because of issue #387
#rplayer.initNode("sim/rendering/shadow-volume", 0, "BOOL");
# Gear
rplayer.initNode("sim/multiplay/generic/int[6]", 0, "BOOL");
rplayer.initNode("sim/multiplay/generic/int[7]", 0, "BOOL");
rplayer.initNode("sim/multiplay/generic/int[8]", 0, "BOOL");
# Bush kit
rplayer.initNode("sim/model/variant", 0, "INT");
# Glass Cockpit
rplayer.initNode("sim/multiplay/generic/bool[1]", 0, "BOOL");
# Damage
var wings_collapsed = rplayer.initNode("sim/multiplay/generic/int[15]", 0, "INT");
var wing_left_state = rplayer.initNode("sim/multiplay/generic/int[18]", 0, "INT");
var wing_right_state = rplayer.initNode("sim/multiplay/generic/int[19]", 0, "INT");
var move_nav_light_left = rplayer.initNode("sim/model/c172p/lighting/nav-lights/left-damaged", 0, "BOOL");
var move_nav_light_right = rplayer.initNode("sim/model/c172p/lighting/nav-lights/right-damaged", 0, "BOOL");
setlistener(wing_left_state.getPath(), func (node) {
var move = node.getValue() == 2 and !wings_collapsed.getBoolValue();
move_nav_light_left.setBoolValue(move);
}, 1, 0);
setlistener(wing_right_state.getPath(), func (node) {
var move = node.getValue() == 2 and !wings_collapsed.getBoolValue();
move_nav_light_right.setBoolValue(move);
}, 1, 0);
setlistener(wings_collapsed.getPath(), func (node) {
var move = wing_left_state.getValue() == 2 and !node.getBoolValue();
move_nav_light_left.setBoolValue(move);
var move = wing_right_state.getValue() == 2 and !node.getBoolValue();
move_nav_light_right.setBoolValue(move);
}, 1, 0);
livery_update.stop();
sim/multiplay/generic/int[14]
sim/model/c172p/lighting/beacon/state
sim/model/c172p/lighting/strobes/state
sim/multiplay/generic/int[4]
sim/multiplay/generic/int[5]
sim/multiplay/generic/float[1]
sim/multiplay/generic/float[0]
sim/multiplay/generic/float[2]
sim/multiplay/generic/float[18]
sim/multiplay/generic/float[19]
sim/multiplay/generic/float[3]
sim/multiplay/generic/float[4]
sim/multiplay/generic/int[15]
sim/multiplay/generic/int[6]
sim/multiplay/generic/int[7]
sim/multiplay/generic/int[8]
sim/model/variant
rotors/main/blade[0]/position-deg
rotors/main/blade[1]/position-deg
rotors/main/blade[2]/position-deg
sim/multiplay/generic/int[10]
sim/multiplay/generic/int[11]
sim/multiplay/generic/int[18]
sim/multiplay/generic/int[19]
engines/engine[7]/rpm
engines/engine[7]/n1
engines/engine[7]/n2
engines/engine[3]/n1
engines/engine[3]/n2
engines/engine[3]/rpm
engines/engine[4]/n1
engines/engine[4]/n2
engines/engine[4]/rpm
engines/engine[5]/n1
engines/engine[5]/n2
engines/engine[5]/rpm
engines/engine[6]/n1
engines/engine[6]/n2
engines/engine[6]/rpm
sim/multiplay/generic/float[5]
engines/engine[2]/rpm
sim/multiplay/generic/int[3]
sim/model/c172p/securing/pitot-cover-visible
sim/model/c172p/securing/chock-visible
sim/model/c172p/securing/cowl-plugs-visible
sim/model/c172p/securing/tiedownL-visible
sim/model/c172p/securing/tiedownR-visible
sim/model/c172p/securing/tiedownT-visible
/controls/engines/current-engine/throttle
/controls/engines/current-engine/altstaticair
/controls/engines/current-engine/mixture
/controls/engines/current-engine/carb-heat
/sim/model/c172p/cockpit/parking-lever
/sim/model/c172p/cockpit/carb-heat-animation
/sim/model/c172p/cockpit/primer-lever-animation
/sim/model/c172p/cockpit/water-rudder-animation
/controls/climate-control/overhead-vent-front-left
/controls/climate-control/overhead-vent-front-right
sim/multiplay/generic/bool[1]
Effects/exterior/dirt-leading-edge
wing_leading_edge_left
wing_leading_edge_right
wing_leading_edge_center
Effects/exterior/dirt-wing
flaps
leftaileron
rightaileron
wing_left
wing_center
wing_right
PitotTube
courtesyoff
Effects/exterior/dirt-fuselage
NoseWheelStrut
LeftWheelStrut
RightWheelStrut
baggagedoorexterior
baggagedoorhandle
charniere1
charniere2
charniere3
charniere4
fairing1
fairing2
fairing3
fuselage
fuselage_cowling
fuselage_cowling_top
leftdoor
leftdoorhandle
rightdoor
rightdoorhandle
Spinner
Propeller
PropellerCowlPlugs
NoseWheel
LeftWheel
RightWheel
LeftWheelBrake
RightWheelBrake
radi_box
TieDownTail
TieDownRight
TieDownLeft
TransponderAntenna
MarkerAntenna
Antenna_ADF
Antenna_VOR
VHFAntenna
ELTAntenna
BeaconMount
Beacon
Exhaust
Axle
ruddercableleft
ruddercableright
ruddercableports
ruddercablelefthinge
ruddercablerighthinge
windowframeleftext
windowframerightext
oildoor
vent
handle
airvent
LeftNavLight
RightNavLight
fuelvent
Effects/exterior/bumpspec
oilcompartment
OilCap
wing_0
wing_1Ledge
wing_1Redge
FuelCapPort
FuelCapStarboard
fuelportstarport
fuelportstarboard
fuelcompartment
lighttaxi
lightlanding
Effects/exterior/dirt-tail
elevatorleft
elevatorright
elevatortrim
hstab
rudder_1
vstab
RearNavLight
Effects/model-transparent
BeaconOffX
BeaconOff
Propeller.Fast
navlight_left
navlight_right
navlight_back
Effects/exterior/exterior-glass-reflection
glas
leftwindow
rightwindow
landinglightcover
material
LeftWheelStrut
RightWheelStrut
LeftWheelBrake
RightWheelBrake
baggagedoorexterior
elevatorleft
elevatorright
elevatortrim
fairing1
fairing2
fairing3
Axle
flaps
fuselage
fuselage_cowling
fuselage_cowling_top
hstab
leftaileron
leftdoor
rightaileron
rightdoor
rudder_1
vstab
wing_left
wing_center
wing_right
wing_leading_edge_left
wing_leading_edge_right
wing_leading_edge_center
wing_1Ledge
wing_1Redge
Spinner
radi_box
ruddercableports
ruddercablelefthinge
ruddercablerighthinge
oildoor
vent
airvent
fuelvent
Antenna_ADF
116
1
1
1
1
1
1
material
charniere1
charniere2
charniere3
charniere4
NoseWheelStrut
leftdoorhandle
rightdoorhandle
baggagedoorhandle
windowframeleftext
windowframerightext
FuelCapPort
FuelCapStarboard
OilCap
handle
BeaconMount
Beacon
courtesyoff
lighttaxi
lightlanding
LeftNavLight
RightNavLight
RearNavLight
128
1
1
1
1
1
1
Effects/interior/c172p-interior
wing_1C
SeatMounts.0
SeatMounts.1
SeatMounts.2
Aircraft/c172p/Models/Effects/interior/lm-interior-panel-parts
gloveboxlock
Aircraft/c172p/Models/Effects/interior/lm-interior-panel
gloveboxdoor
Effects/interior/c172p-interior-glass-reflection-front
glas_interior
Effects/interior/c172p-interior-glass-front-sides
glas_front_interior_sides
Effects/interior/c172p-interior-glass-window-left
leftwindow_interior
Effects/interior/c172p-interior-glass-window-right
rightwindow_interior
Effects/interior/c172p-interior-glass-back-sides
glas_interior_sides
Effects/interior/c172p-interior-glass-back
glas_interior_back
Effects/damage/nose_gear.xml
-.85
0.0000
-.98
Effects/damage/left_gear.xml
-0.7
-1.9
-0.95
Effects/damage/right_gear.xml
-0.7
1.9
-0.95
Effects/damage/tail.xml
4.9264
0.0000
-0.6
Effects/damage/wing-left.xml
.15
-5.6338
0.49
Effects/damage/wing-right.xml
.15
5.6338
0.49
Effects/pontoon/left_ground.xml
-0.7
-1.9
-1.8
Effects/pontoon/right_ground.xml
-0.7
1.9
-1.8
Effects/skis/nose_gear.xml
-.85
-.0
-1.15
Effects/skis/left_gear.xml
0.7
-1.35
-1.15
Effects/skis/right_gear.xml
1.10
0.91
-1.15
Immat/immat.xml
MooringHarness
Effects/pontoon/mooringharness.xml
Aircraft/Generic/marker.xml
c172sp
Interior/Panel/c172sp-panel/c172sp.xml
c172p
Interior/Panel/c172p-panel/c172p.xml
ControlLock
Interior/control-lock/control-lock.xml
OAT-object
Interior/Panel/Instruments/oat/oat.xml
PilotPedals
Interior/Pedals/pedals-pilot.xml
-0.56
-0.24
-0.61
CoPilotPedals
Interior/Pedals/pedals-copilot.xml
-0.56
0.24
-0.61
Exhaust
Effects/exhaust/exhaust.xml
-1.3093
0.324625
-0.782313
Exhaust
Effects/damage-smoke/smoke.xml
-1.3093
0.324625
-0.782313
Effects/tyresmoke/tyre-smoke-nose.xml
tyre-smoke-n
-1.
0.0
-1.5
Effects/tyresmoke/tyre-smoke-port.xml
tyre-smoke-p
.3
-1.15
-1.5
Effects/tyresmoke/tyre-smoke-stbd.xml
tyre-smoke-s
.3
1.15
-1.5
Effects/tyrespray/rain-nose.xml
rain-nose
-1.
0.0
-1.5
Effects/tyrespray/rain-port.xml
rain-port
.3
-1.15
-1.5
Effects/tyrespray/rain-stbd.xml
rain-stbd
0.1
0.9
-1.85
Effects/propspray/rain-nose-propeller.xml
rain-nose-propeller
-6.0
0.0
0.0
Effects/pontoon/left-spray.xml
spray-left
-1.0
-1.2
-2.0
Effects/pontoon/right-spray.xml
spray-right
-1.0
1.15
-2.0
Effects/pontoon/left-wake.xml
spray-wake
1
-1.2
-4.25
-50
Effects/pontoon/right-wake.xml
spray-wake
1
1.15
-4.25
-50
Effects/pontoon/middle-wake.xml
spray-wake
1
0
-4.25
-55
Effects/pontoon/eng-spray.xml
eng-spray
-1.0
1.15
-5.0
LabelMagCompass
literal
Magnetic Compass
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.3
-0.02
0.220
LabelGloveBox
literal
Glove Box
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.34
0.37
-0.222
LabelTrim
literal
Elevator Trim
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.24
-0.10
-0.34723
LabelFlaps
literal
Flaps
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.34
0.16
-0.20
LabelCabinHeat
literal
Cabin Heat
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.34
0.275
-0.210
LabelCabinAir
literal
Cabin Air
true
Helvetica.txf
0.012
1.0
yz-plane
0.2
0.07
32
32
center-center
-0.34
0.275
-0.26
LabelAirVentLeft
literal
Air Vent
true
Helvetica.txf
0.012
-1.0
xz-plane
0.2
0.07
24
24
center-center
-0.01
-0.50
0.42
LabelAirVentRight
literal
Air Vent
true
Helvetica.txf
0.012
1.0
xz-plane
0.2
0.07
32
32
center-center
0.03
0.50
0.44007
LabelOAT
literal
Air Temperature
true
Helvetica.txf
0.012
1.0
xz-plane
0.2
0.10
32
32
center-center
0.01
0.46
0.485
material
LabelMagCompass
LabelTrim
LabelGloveBox
LabelAirVentLeft
LabelAirVentRight
LabelOAT
LabelCabinHeat
LabelCabinAir
LabelFlaps
1.0
0.8
0.0
select
LabelMagCompass
LabelTrim
LabelGloveBox
LabelAirVentLeft
LabelAirVentRight
LabelOAT
LabelCabinHeat
LabelCabinAir
LabelFlaps
sim/panel-hotspots
knob
visorleft
visorleft-fg1000
controls/visors/left/visor-position-deg
1
vertical
0
0.10223
-0.37058
0.4589
0
1
0
property-adjust
controls/visors/left/visor-position-deg
5
10
90
false
knob
visorright
visorright-fg1000
controls/visors/right/visor-position-deg
1
vertical
0
0.10134
0.37116
0.45852
0
1
0
property-adjust
controls/visors/right/visor-position-deg
5
10
90
false
knob
visorrodleft
visorleft
visorrodleft-fg1000
visorleft-fg1000
controls/visors/left/rod-position-deg
1
horizontal
0
0.10647
-0.40846
0.47832
.3
.03
1
property-adjust
controls/visors/left/rod-position-deg
5
-30
12
false
knob
visorrodright
visorright
visorrodright-fg1000
visorright-fg1000
controls/visors/right/rod-position-deg
1
horizontal
0
0.1063
0.40887
0.48035
-.3
-.03
-1
property-adjust
controls/visors/right/rod-position-deg
5
-30
12
false
pick
LeftBag
LeftBag-fg1000
true
false
dialog-show
checklist
nasal
set-tooltip
checklist
slider
CabinHeat
CabinHeat-fg1000
true
vertical
property-adjust
/environment/aircraft-effects/cabin-heat-set
-0.05
0
1
0
set-tooltip
Cabin Heat: 100%
cabinheat
percent
/environment/aircraft-effects/cabin-heat-set
translate
CabinHeat
CabinHeat-fg1000
/environment/aircraft-effects/cabin-heat-set
0.03
1.0
0.0
0.0
slider
CabinAir
CabinAir-fg1000
true
vertical
property-adjust
/environment/aircraft-effects/cabin-air-set
-0.05
0
1
0
set-tooltip
Cabin Air: 100%
cabinair
percent
/environment/aircraft-effects/cabin-air-set
translate
CabinAir
CabinAir-fg1000
/environment/aircraft-effects/cabin-air-set
0.03
1.0
0.0
0.0
slider
AirVent_left
AirVent_left-fg1000
true
horizontal
-10.0
property-adjust
/controls/climate-control/overhead-vent-front-left
-0.05
0
1
false
set-tooltip
Air Vent: 100%
air-vent-front-left
percent
translate
AirVent_left
AirVent_left-fg1000
0.02537
-0.02537
1.0
slider
AirVent_right
AirVent_right-fg1000
OAT-object
glass_oat
true
horizontal
10.0
property-adjust
/controls/climate-control/overhead-vent-front-right
-0.05
0
1
false
set-tooltip
Air Vent: 100%
air-vent-front-right
percent
translate
AirVent_right
AirVent_right-fg1000
OAT-object
glass_oat
-0.050
0.050
1.0
pick
rightdoorhandle
true
false
nasal
set-tooltip
door-handle-r
pick
doorhandleint_right
doorhandleint_right-fg1000
/sim/model/door-positions/rightDoor/opened
0.0
true
false
nasal
set-tooltip
door-handle-int-r
pick
doorintstrapright
doorintstrapright-fg1000
/sim/model/door-positions/rightDoor/opened
1.0
true
false
nasal
set-tooltip
door-strap-r
pick
leftdoorhandle
true
false
nasal
set-tooltip
door-handle-l
pick
doorhandleint_left
doorhandleint_left-fg1000
/sim/model/door-positions/leftDoor/opened
0.0
true
false
nasal
set-tooltip
door-handle-int-l
pick
doorintstrapleft
doorintstrapleft-fg1000
/sim/model/door-positions/leftDoor/opened
1.0
true
false
nasal
set-tooltip
door-strap-l
pick
windlocket_left
windlocket_left-fg1000
true
false
nasal
set-tooltip
window-handle-l
pick
windlocket_right
windlocket_right-fg1000
true
false
nasal
set-tooltip
window-handle-r
pick
baggagedoorhandle
true
false
/sim/model/door-positions/baggageDoor/position-norm
0
velocities/groundspeed-kt
1.0
nasal
/sim/model/door-positions/baggageDoor/position-norm
0
velocities/groundspeed-kt
1.0
nasal
set-tooltip
oppen-baggage-door
select
BaggageDoorHotSpot
/sim/model/door-positions/baggageDoor/position-norm
1
velocities/groundspeed-kt
1.0
pick
BaggageDoorHotSpot
false
/sim/model/door-positions/baggageDoor/position-norm
1
velocities/groundspeed-kt
1.0
nasal
/sim/model/door-positions/baggageDoor/position-norm
1
velocities/groundspeed-kt
1.0
set-tooltip
close-baggage-door
pick
FuelCapPort
true
false
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
property-toggle
sim/model/open-pfuel-cap
nasal
/engines/active-engine/running
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
nasal
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
set-tooltip
fuel-cap-port
pick
FuelCapStarboard
true
false
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
property-toggle
sim/model/open-sfuel-cap
nasal
/engines/active-engine/running
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
nasal
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
set-tooltip
fuel-cap-starboard
translate
FuelCapPort
sim/model/open-pfuel-cap
0.1
0.15
-0.05
0.5
translate
FuelCapStarboard
sim/model/open-sfuel-cap
0.1
0.15
0.05
0.5
pick
oildoor
true
false
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/engines/active-engine/oil_consumption_allowed
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/engines/active-engine/oil_consumption_allowed
nasal
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
oil-door
rotate
oildoor
0.0
0.0
0.5
-45.0
1
-90.0
-0.80485
0.23079
0.16388
-0.88058
0.2303
0.16328
rotate
airvent
airventhole
/environment/aircraft-effects/cabin-air-set
0.0
0.0
0.5
7.5
1
15.0
-0.49202
0.52131
-0.23855
-0.49239
0.52263
-0.28139
pick
gloveboxdoor
gloveboxlock
true
false
nasal
nasal
nasal
set-tooltip
door-handle-glovebox
rotate
gloveboxdoor
gloveboxlock
0.20
0.0
0.55
-40.0
1
-80
-0.36927
0.38169
-0.25797
0.0
-1.0
0.0
rotate
gloveboxlock
0.0
0.0
.10
-22.5.0
.20
-45.0
-0.36675
0.38077
-0.20765
1.0
0.0
0.0
rotate
rightdoor
rightdoorhandle
rightwindow
doorint_right
doorhandleint_right
doorintstrapright
windlocket_right
windlocketbak_right
windowframerightint
windowframerightext
rightwindow_interior
doorint_right-fg1000
doorhandleint_right-fg1000
doorintstrapright-fg1000
windlocket_right-fg1000
windlocketbak_right-fg1000
windowframerightint-fg1000
0.0
0.0
0.5
0
1
70.0
-0.117
0.530
-0.376
-0.054
0.535
-0.117
rotate
doorhandleint_right
doorhandleint_right-fg1000
/sim/model/door-positions/rightDoor/opened
0.0
0.0
0.0
0.18
70.0
0.26
70.0
0.35
110.0
0.43
110.0
0.5
0.0
1
0.0
0.07864
0.46709
-0.24414
0.0
1.0
0.0
rotate
rightdoorhandle
/sim/model/door-positions/rightDoor/opened
0.0
0.0
0.0
0.275
-30.0
0.55
0.0
1
0.0
0.77042
0.51667
-0.17336
0.0
0.0
1.0
rotate
leftdoor
leftdoorhandle
leftwindow
doorint_left
doorhandleint_left
doorintstrapleft
windlocket_left
windlocketbak_left
windowframeleftint
windowframeleftext
leftwindow_interior
doorint_left-fg1000
doorhandleint_left-fg1000
doorintstrapleft-fg1000
windlocket_left-fg1000
windlocketbak_left-fg1000
windowframeleftint-fg1000
0.0
0.0
0.5
0
1
-70.0
-0.117
-0.530
-0.376
-0.054
-0.535
-0.117
rotate
doorhandleint_left
doorhandleint_left-fg1000
/sim/model/door-positions/leftDoor/opened
0.0
0.0
0.0
0.18
70.0
0.26
70.0
0.35
110.0
0.43
110.0
0.5
0.0
1
0.0
0.07864
-0.46709
-0.24414
0.0
1.0
0.0
rotate
leftdoorhandle
/sim/model/door-positions/leftDoor/opened
0.0
0.0
0.0
0.275
30.0
0.55
0.0
1
0.0
0.76986
-0.51523
-0.17366
0.0
0.0
1.0
rotate
leftwindow
leftwindow_interior
windlocket_left
windlocketbak_left
windowframeleftint
windowframeleftext
windlocket_left-fg1000
windlocketbak_left-fg1000
windowframeleftint-fg1000
0.0
0.0
0.5
0.0
1
-20.0
0.4485
-0.5212
0.2791
1
0
0
rotate
windlocket_left
windlocket_left-fg1000
0.0
0.0
0.5
90.0
1
90.0
0.3358
-0.51659
-0.04665
0
1
0
rotate
rightwindow
rightwindow_interior
windlocket_right
windlocketbak_right
windowframerightint
windowframerightext
windlocket_right-fg1000
windlocketbak_right-fg1000
windowframerightint-fg1000
0.0
0.0
0.5
0.0
1
20.0
0.4564
0.5226
0.2798
1
0
0
rotate
windlocket_right
windlocket_right-fg1000
0.0
0.0
0.5
90.0
1
90.0
0.3358
0.51712
-0.04189
0
1
0
rotate
baggagedoorexterior
baggagedoorinterior
baggagedoorhandle
baggagedoorinterior-fg1000
-90
1.373
-0.445
-0.656
1.424
-0.445
-0.204
rotate
baggagedoorhandle
/sim/model/door-positions/baggageDoor/opened
0.0
0.0
0.0
0.15
30.0
0.3
0.0
1
0.0
1.84848
-0.44489
-0.43722
0.0
0.0
1.0
translate
ParkingBrake
ParkingBrake-fg1000
0.04
1.0
0.0
0.0
pick
ParkingBrake
ParkingBrake-fg1000
true
Select
property-toggle
/controls/gear/brake-parking
nasal
set-tooltip
/controls/gear/brake-parking
parking-brake
on-off
translate
Throttle
Throttle-fg1000
-0.08
1.0
0.0
0.0
slider
Throttle
ThrottleMount
Throttle-fg1000
ThrottleMount-fg1000
true
vertical
property-adjust
/controls/engines/current-engine/throttle
0.02
0
1
0
set-tooltip
Throttle: 100%
throttle
percent
translate
AltStaticAir
AltStaticAir-fg1000
0.0083
1.0
0.0
0.0
slider
AltStaticAir
AltStaticAir-fg1000
true
vertical
property-adjust
/controls/engines/current-engine/altstaticair
1
0
1
0
set-tooltip
Alternate Static Pressure: 100%
staticairpressure
percent
translate
Mixture
Mixture-fg1000
-0.08
1.0
0.0
0.0
slider
Mixture
MixtureMount
Mixture-fg1000
MixtureMount-fg1000
true
vertical
property-adjust
controls/engines/current-engine/mixture
0.02
0
1
0
set-tooltip
Mixture: 100%
mixture
percent
select
glas_interior
leftwindow_interior
rightwindow_interior
glas_interior_sides
/sim/current-view/internal
/environment/rain-norm
select
FuelSelectorOff
FuelSelectorOff-fg1000
consumables/fuel/tank[0]/selected
consumables/fuel/tank[1]/selected
consumables/fuel/tank[2]/selected
consumables/fuel/tank[3]/selected
select
FuelSelectorLeft
FuelSelectorLeft-fg1000
consumables/fuel/tank[0]/selected
consumables/fuel/tank[1]/selected
consumables/fuel/tank[2]/selected
consumables/fuel/tank[3]/selected
select
FuelSelectorRight
FuelSelectorRight-fg1000
consumables/fuel/tank[0]/selected
consumables/fuel/tank[1]/selected
consumables/fuel/tank[2]/selected
consumables/fuel/tank[3]/selected
select
FuelSelectorBoth
FuelSelectorBoth-fg1000
consumables/fuel/tank[0]/selected
consumables/fuel/tank[1]/selected
consumables/fuel/tank[2]/selected
consumables/fuel/tank[3]/selected
pick
FuelHotspotOff
true
false
property-assign
consumables/fuel/tank[0]/selected
false
property-assign
consumables/fuel/tank[1]/selected
false
property-assign
consumables/fuel/tank[2]/selected
false
property-assign
consumables/fuel/tank[3]/selected
false
pick
FuelHotspotLeft
true
false
nasal
pick
FuelHotspotRight
true
false
nasal
pick
FuelHotspotBoth
true
false
nasal
material
courtesyon-l
0.697
0.689
0.445
/sim/model/c172p/lighting/courtesy
material
courtesyon-r
0.697
0.689
0.445
/sim/model/c172p/lighting/courtesy
material
courtesyon-l
0.697
0.689
0.445
/controls/lighting/domeL
material
courtesyon-r
0.697
0.689
0.445
/controls/lighting/domeR
courtesy-r-fg1000
Aircraft/c172p/Models/Effects/interior/procedural_light_courtesy-r-fg1000.xml
0.74
1.65
0.3275
courtesy-l-fg1000
Aircraft/c172p/Models/Effects/interior/procedural_light_courtesy-l-fg1000.xml
0.74
-1.65
0.3275
courtesy-r
Aircraft/c172p/Models/Effects/interior/procedural_light_courtesy.xml
0.74
1.65
0.3275
courtesy-l
Aircraft/c172p/Models/Effects/interior/procedural_light_courtesy.xml
0.74
-1.65
0.3275
nav-light-right
Effects/lights/procedural_light_nav_right.xml
0.102
5.66
0.53459
select
nav-light-right
1
nav-light-left
Effects/lights/procedural_light_nav_left.xml
0.108
-5.66
0.53365
select
nav-light-left
1
nav-light-tail
Effects/lights/procedural_light_nav_tail.xml
6.11
0.0042
0.9722
select
nav-light-tail
strobe-light-left
Effects/lights/procedural_light_left_strobe.xml
0.15
-5.66
0.53365
select
strobe-light-left
1
strobe-light-right
Effects/lights/procedural_light_right_strobe.xml
0.15
5.66
0.53459
select
strobe-light-right
1
select
landinglight
1
flash
landinglight
-0.135
-2.940
0.520
-1
0
0
8
6
0
false
0.5
80
select
taxilight
1
flash
taxilight
-0.135
-2.750
0.520
-1
0
0
8
5
0
false
0.5
80
select
BeaconOffX
0.4
0.8
10
alpha-test
BeaconOffX
0.001
translate
BeaconOffX
5.599
5.49803
0.00000
1.081
billboard
BeaconOffX
true
dist-scale
BeaconOffX
0
500
16000
select
ProceduralLandingLight
1
ProceduralLandingLight
spot
-0.135
-2.940
0.520
-19.222
0
-0.920
0.95
0.95
0.95
1
0.95
0.95
0.95
1
0.95
0.95
0.95
1
1.0
0.014
0.0007
15
60
325
1
1
1
1
select
ProceduralTaxiLight
1
ProceduralTaxiLight
spot
-0.135
-2.750
0.520
-19.222
0
-0.920
0.95
0.95
0.95
1
0.95
0.95
0.95
1
0.95
0.95
0.95
1
1.0
0.07
0.017
15
60
65
1
1
1
1
select
ProceduralCourtesyLeftLight
/sim/model/c172p/lighting/courtesy
/controls/lighting/domeL
select
ProceduralCourtesyRightLight
/sim/model/c172p/lighting/courtesy
/controls/lighting/domeR
ProceduralCourtesyLeftLight
spot
0.75
-1.65
0.36
-7
0
-30
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.7
1.1
2.5
80
15
1
1
1
1
ProceduralCourtesyRightLight
spot
0.75
1.65
0.36
-7
0
-30
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.7
1.1
2.5
80
15
1
1
1
1
select
leftstrobe
0
select
rightstrobe
0
leftstrobe
spot
0.14
-6
0.52
0.148
-20
0.52
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.25
0.50
1.00
89
30
1
1
1
1
rightstrobe
spot
0.15
6
0.52
0.15
20
0.25
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.25
0.50
1.00
89
30
1
1
1
1
select
leftstrobeD
2
select
rightstrobeD
2
leftstrobeD
spot
0.34
-6
0.80
0.34
-20
0.80
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.46
1.20
0.5
89
30
1
1
1
1
rightstrobeD
spot
0.39
6
1.06
0.39
20
1.06
1
1
1
1
1
1
1
1
1
1
1
1
1.0
0.46
1.20
0.5
89
30
1
1
1
1
select
beaconlight
beaconlight
spot
6.5
0.003
1.07928
0.75
0.0
1.5
1
0
0
1
0.05
0
0
1
0.05
0
0
1
1.0
1.5
8.33
1.00
60
2.5
1
0
1
1
select
taillight
taillight
spot
7.5
0.0
0.97
27
0.00
-20
0.1
0.2
0.1
1
0.95
0.95
0.95
1
0.95
0.95
0.95
1
1.0
0.25
0.5
1.00
89
2.5
1
0
0
1
select
navlightred
1
navlightred
spot
0.050
-5.90
0.53365
-13
-13
-12.5
0.2
0.1
0.1
1
0.9
0.1
0.1
1
0.9
0.1
0.1
1
1.0
0.25
0.5
1.00
89
2.5
1
0
0
1
select
navlightgreen
1
navlightgreen
spot
0.050
5.90
0.53365
-13
13
-12.5
0.1
0.2
0.1
1
0.1
0.9
0.1
1
0.1
0.9
0.1
1
1.0
0.25
0.5
1.00
89
2.5
1
0
0
1
noshadow
landinglight
taxilight
BeaconOffX
taillight
navlightred
navlightgreen
beaconlight
leftstrobe
rightstrobe
nav-light-right
nav-light-left
nav-light-tail
beacon-light
strobe-light-left
strobe-light-right
courtesy-l
courtesy-r
courtesy-l-fg1000
courtesy-r-fg1000
translate
nav-light-left
0.35
sim/model/c172p/lighting/nav-lights/left-damaged
0.77
-0.05
1.0
translate
nav-light-right
0.60
sim/model/c172p/lighting/nav-lights/right-damaged
0.53
-0.05
1.0
translate
strobe-light-left
0.35
sim/model/c172p/lighting/nav-lights/left-damaged
0.77
-0.05
1.0
translate
strobe-light-right
0.60
sim/model/c172p/lighting/nav-lights/right-damaged
0.53
-0.05
1.0
rotate
leftaileron
surface-positions/left-aileron-pos-norm
0
-1.0
-15
0.0
0
1.0
20
0.862
-5.464
0.459
1.158
-2.616
0.337
rotate
leftaileron_D
surface-positions/left-aileron-pos-norm
2
-1.0
20
0.0
0
1.0
-15
1.15778
-2.6163
0.33767
1.05526
-5.42979
0.71097
rotate
rightaileron
surface-positions/right-aileron-pos-norm
0
-1.0
20
0.0
0
1.0
-15
1.158
2.616
0.337
0.862
5.464
0.459
rotate
rightaileron_D
surface-positions/right-aileron-pos-norm
2
-1.0
20
0.0
0
1.0
-15
1.15767
2.61617
0.33727
1.08169
5.39225
0.95676
translate
flaps
flapsD
surface-positions/flap-pos-norm
0.08
1.0
0.0
0.0
translate
flaps
flapsD
surface-positions/flap-pos-norm
-0.10
0.0
0.0
1.0
rotate
flaps
flapsD
surface-positions/flap-pos-norm
30
1.152
-0.53
0.32
0.0
1.0
0.0
rotate
elevatorleft
surface-positions/elevator-pos-norm
-1.0
28
0
0
1.0
-23
4.87869
-0.1350
-0.42222
4.7439
-1.7279
-0.4222
rotate
elevatorright
elevatortrim
surface-positions/elevator-pos-norm
-1.0
28
0
0
1.0
-23
4.7439
1.7279
-0.4222
4.87869
0.1350
-0.42222
rotate
elevatortrim
controls/flight/elevator-trim
-25
5.37238
0.40405
-0.43873
5.24803
1.30441
-0.43157
rotate
rudder_1
RearNavLight
nav-light-tail
ruddercablelefthinge
ruddercablerighthinge
surface-positions/rudder-pos-norm
13
4.918
0
-0.310
5.805
-0.013
1.007
rotate
ruddercableleft
surface-positions/rudder-pos-norm
3
4.75597
-0.08369
-0.54047
0.0
0.0
1.0
translate
ruddercableleft
surface-positions/rudder-pos-norm
.03
1.0
0.0
0.0
translate
ruddercableleft
surface-positions/rudder-pos-norm
-.008
0.0
0.0
1.0
rotate
ruddercablelefthinge
surface-positions/rudder-pos-norm
40
4.97326
-0.03545
-0.54239
0.0
0.0
1.0
rotate
ruddercableright
surface-positions/rudder-pos-norm
3
4.75019
0.08448
-0.54046
0.0
0.0
1.0
translate
ruddercableright
surface-positions/rudder-pos-norm
-.03
1.0
0.0
0.0
translate
ruddercableright
surface-positions/rudder-pos-norm
.008
0.0
0.0
1.0
rotate
ruddercablerighthinge
surface-positions/rudder-pos-norm
40
4.97487
0.03545
-0.54239
0.0
0.0
1.0
rotate
fairing1
NoseWheel
NoseWheelStrut
TopLink
BottomLink
Axle
NoseWheelBK
NoseWheelStrutBK
AxleBK.001
NoseSki
NoseSkiAxle
NoseSkiAxleBl
NoseSkiAxleBr
NoseSkiBraceL
NoseSkiBraceR
NoseSkiWireF
NoseCableConnect
NoseSkiWheel
NoseSkiWheelAxleL
NoseSkiWheelAxleR
fdm/jsbsim/fcs/steer-pos-deg
-0.975
0
-0.6781
-1.123
0.0
-1.172
translate
fairing1
NoseWheel
NoseWheelStrut
BottomLink
Axle
NoseWheelBK
NoseWheelStrutBK
AxleBK.001
NoseSki
NoseSkiAxle
NoseSkiAxleBl
NoseSkiAxleBr
NoseSkiBraceL
NoseSkiBraceR
NoseSkiWireF
NoseCableConnect
NoseSkiWheel
NoseSkiWheelAxleL
NoseSkiWheelAxleR
gear/gear[0]/compression-norm
0.30
0.3
0
1.0
rotate
TopLink
gear/gear[0]/compression-norm
-0.95412
0.0
-0.72408
0.0
-1.0
0.0
rotate
BottomLink
gear/gear[0]/compression-norm
-1.02349
0.0
-0.95449
0.0
1.0
0.0
rotate
fairing3
RightWheelStrut
RightWheel
RightWheelBrake
RightWheelBK
RightWheelBKs
RightSki
RightSkiAxle
RightSkiAxleBl
RightSkiAxleBr
RightSkiBraceL
RightSkiBraceR
RightSkiWireF
RightSkiWireB
RightCableConnectF
RightCableConnectB
RightSkiWheel
RightSkiWheelAxle
gear/gear[2]/compression-norm
0.711
0.4518
-0.70
1.0
0.0
0.0
rotate
fairing2
LeftWheelStrut
LeftWheel
LeftWheelBrake
LeftWheelBK
LeftWheelBKs
LeftSki
LeftSkiAxle
LeftSkiAxleBl
LeftSkiAxleBr
LeftSkiBraceL
LeftSkiBraceR
LeftSkiWireF
LeftSkiWireB
LeftCableConnectF
LeftCableConnectB
LeftSkiWheel
LeftSkiWheelAxle
gear/gear[1]/compression-norm
0.711
-0.4518
-0.70
-1.0
0.0
0.0
rotate
NoseSki
NoseSkiAxle
NoseSkiAxleBl
NoseSkiAxleBr
NoseSkiBraceL
NoseSkiBraceR
NoseSkiWireF
NoseCableConnect
NoseSkiWheel
NoseSkiWheelAxleL
NoseSkiWheelAxleR
/fdm/jsbsim/ski/atan-actual
0.65
0.0
0.61
10.0
-1.113
-0.004
-1.202
0.0
1.0
0.0
rotate
NoseSkiWireF
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-3
-2.1396
-0.0177
-1.1274
0.0
1.0
0.0
rotate
LeftSki
LeftSkiAxleBl
LeftSkiAxleBr
LeftSkiBraceL
LeftSkiBraceR
LeftSkiWireF
LeftSkiWireB
LeftCableConnectF
LeftCableConnectB
LeftSkiWheel
LeftSkiWheelAxle
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
10.0
0.528
-1.179
-1.148
0.0
1.0
0.0
rotate
LeftSkiSpring
/fdm/jsbsim/ski/atan-actual
0.6517
0.
0.493
1
-0.6362
-0.5327
-0.1468
0.0
1.0
0.0
rotate
LeftSkiSpring
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-6
-0.6362
-0.5327
-0.1468
1.0
0.0
0.0
rotate
LeftSkiWireF
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-8
-0.8426
-0.9569
-1.1537
0.0
1.0
0.0
rotate
LeftSkiWireF
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-6
-0.8426
-0.9569
-1.1537
1.0
0.0
0.0
rotate
LeftSkiWireB
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-3
1.4231
-0.9603
-1.3955
0.0
1.0
0.0
rotate
RightSki
RightSkiAxleBl
RightSkiAxleBr
RightSkiBraceL
RightSkiBraceR
RightSkiWireF
RightSkiWireB
RightCableConnectF
RightCableConnectB
RightSkiWheel
RightSkiWheelAxle
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
10.0
0.530
1.189
-1.145
0.0
1.0
0.0
rotate
RightSkiSpring
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
2
-0.6344
0.5495
-0.1629
0.0
1.0
0.0
rotate
RightSkiSpring
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
6
-0.6344
0.5495
-0.1629
1.0
0.0
0.0
rotate
RightSkiWireF
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-8
-0.844
0.9575
-1.1582
0.0
1.0
0.0
rotate
RightSkiWireF
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
6
-0.844
0.9575
-1.1582
1.0
0.0
0.0
rotate
RightSkiWireB
/fdm/jsbsim/ski/atan-actual
0.6517
0.0
0.493
-3.5
1.4278
0.9737
-1.3889
0.0
1.0
0.0
spin
RightWheel
RightWheelBK
RightWheelBKs
/fdm/jsbsim/gear/gear-spin-right
0
-1
0
0.53015
1.127
-1.14693
spin
LeftWheel
LeftWheelBK
LeftWheelBKs
/fdm/jsbsim/gear/gear-spin-left
0
-1
0
0.53015
-1.127
-1.14693
spin
NoseWheel
NoseWheelBK
/fdm/jsbsim/gear/gear-spin-nose
0
-1
0
-1.1149
0.00000
-1.1889
spin
NoseSkiWheel
125
0
-1
0
-0.56607
-0.00027
-1.34917
spin
LeftSkiWheel
100
0
-1
0
1.24648
-1.30575
-1.48968
spin
RightSkiWheel
100
0
-1
0
1.24648
1.33153
-1.48274
select
Propeller
500
select
Spinner
select
Propeller.Fast
400
blend
Propeller.Fast
0.0004
0.5
0.0
spin
Propeller
Spinner
-1
-1.96139
0.00127
-0.0519
1.0
0.0
0.0
spin
Propeller.Fast
Spinner
-0.001
-1.96139
0.00127
-0.0519
1.0
0.0
0.0
select
PropellerD
SpinnerD
select
wing_left
wing_leading_edge_left
wing_0
leftaileron
LeftNavLight
landinglightcover
0
select
wing_right
wing_leading_edge_right
rightaileron
RightNavLight
0
select
wing_collapse_group
select
wing_center_broke_left
wingblockerleft
1
select
wing_center_broke_right
wingblockerright
1
select
wing_right_damage_group
2
select
wing_left_damage_group
2
select
lighttaxi
lightlanding
0
2
translate
lighttaxi
lighttaxi1
2
0.02062
0.0
0.00613
translate
lightlanding
lightlanding1
2
0.03181
0.0
0.01843
select
L-FloatC
0
3
select
R-FloatC
0
3
select
L-Float
LRwheel
LRAxle
LFrontWheel
LAxle
LRtarm
Ldamper
Lstrut.001
Lstrut.002
0
4
select
R-Float
RRwheel
RRAxle
RFrontWheel
RAxle
RRtarm
Rdamper
Rstrut.001
Rstrut.002
0
4
select
LHrudder
0
3
4
select
RHrudder
0
3
4
select
RuddWires
FloatStruts
FloatReinforceLeft
FloatReinforceRight
FloatReinforceJoin
RudderCatch
RudderHandle
RudderScrews
RudderTube
3
4
select
RudderCable
3
4
/controls/gear/water-rudder
pick
RudderHandle
true
property-toggle
/controls/gear/water-rudder
set-tooltip
/controls/gear/water-rudder
water-rudders
down-up
translate
RudderHandle
-0.21348
1.0
0.0
0.0
select
L-FloatCD
2
3
select
R-FloatCD
2
3
select
L-FloatCB
1
3
select
R-FloatCB
1
3
select
L-FloatOD
LRwheelOD
LdamperOD
LstrutOD.001
LstrutOD.002
2
4
select
R-FloatOD
RRwheelOD
RdamperOD
RstrutOD.001
RstrutOD.002
2
4
select
L-FloatOB
LRwheelOB
LdamperOB
LstrutOB.001
LstrutOB.002
1
4
select
R-FloatOB
RRwheelOB
RdamperOB
RstrutOB.001
RstrutOB.002
1
4
select
LHrudderD
2
3
4
select
RHrudderD
2
3
4
select
LHrudderB
1
3
4
select
RHrudderB
1
3
4
select
NoseWheel
Axle
NoseWheelStrut
0
select
NoseWheelBK
NoseWheelStrutBK
1
2
5
select
AxleBK.001
1
2
select
TopLink
BottomLink
0
1
2
5
select
NoseWheelD
AxleD.001
NoseWheelStrutD
TopLinkD
BottomLinkD
0
select
NoseWheelBKD
AxleBKD.001
NoseWheelStrutBKD
TopLinkBKD
BottomLinkBKD
1
2
5
select
LeftWheel
0
select
LeftWheelBKs
1
select
LeftWheelBK
2
5
select
LeftWheelStrut
LeftWheelBrake
0
1
2
5
select
LeftWheelD
0
select
LeftWheelBKsD
1
select
LeftWheelBKD
2
5
select
LeftWheelStrutBKD
LeftWheelBrakeD
0
1
2
5
select
RightWheel
0
select
RightWheelBKs
1
select
RightWheelBK
2
5
select
RightWheelStrut
RightWheelBrake
0
1
2
5
select
RightWheelD
0
select
RightWheelBKsD
1
select
RightWheelBKD
2
5
select
RightWheelStrutBKD
RightWheelBrakeD
0
1
2
5
select
NoseSki
NoseSkiAxle
NoseSkiAxleBl
NoseSkiAxleBr
NoseSkiBraceL
NoseSkiBraceR
NoseSkiWireF
NoseCableConnect
NoseSkiWheel
NoseSkiWheelAxleL
NoseSkiWheelAxleR
5
select
NoseSkid
NoseSkiAxled
NoseSkiAxleBld
NoseSkiAxleBrd
NoseSkiBraceLd
NoseSkiBraceRd
NoseSkiWireFd
NoseCableConnectd
NoseSkiWheeld
NoseSkiWheelAxleLd
NoseSkiWheelAxleRd
5
select
LeftSki
LeftSkiAxle
LeftSkiAxleBl
LeftSkiAxleBr
LeftSkiBraceL
LeftSkiBraceR
LeftSkiWireF
LeftSkiWireB
LeftCableConnectF
LeftCableConnectB
LeftSkiWheel
LeftCableConnectT
LeftSkiSpring
LeftSkiWheelAxle
5
select
LeftSkid
LeftSkiAxled
LeftSkiAxleBld
LeftSkiAxleBrd
LeftSkiBraceLd
LeftSkiBraceRd
LeftSkiWireFd
LeftSkiWireBd
LeftCableConnectFd
LeftCableConnectBd
LeftCableConnectTd
LeftSkiWheeld
LeftSkiSpringd
LeftSkiWheelAxled
5
select
RightSki
RightSkiAxle
RightSkiAxleBl
RightSkiAxleBr
RightSkiBraceL
RightSkiBraceR
RightSkiWireF
RightSkiWireB
RightCableConnectF
RightCableConnectB
RightSkiWheel
RightCableConnectT
RightSkiSpring
RightSkiWheelAxle
5
select
RightSkid
RightSkiAxled
RightSkiAxleBld
RightSkiAxleBrd
RightSkiBraceLd
RightSkiBraceRd
RightCableConnectTd
RightSkiWireFd
RightSkiWireBd
RightCableConnectFd
RightCableConnectBd
RightSkiWheeld
RightSkiSpringd
RightSkiWheelAxled
5
select
fairing1
sim/model/c172p/fairing1
select
fairing2
sim/model/c172p/fairing2
select
fairing3
sim/model/c172p/fairing3
select
fairing1D
sim/model/c172p/fairing1
select
fairing2D
sim/model/c172p/fairing2
select
fairing3D
sim/model/c172p/fairing3
material
RightWheelStrut
LeftWheelStrut
fairing1
fairing2
fairing3
fuselage
fuselage_cowling
fuselage_cowling_top
charniere1
charniere2
charniere3
charniere4
leftdoor
leftdoorhandle
rightdoor
rightdoorhandle
baggagedoorexterior
baggagedoorhandle
Spinner
Propeller
PropellerCowlPlugs
LeftNavLight
RightNavLight
radi_box
ruddercableports
windowframeleftext
windowframerightext
oildoor
vent
handle
airvent
TransponderAntenna
MarkerAntenna
Antenna_ADF
Antenna_VOR
VHFAntenna
ELTAntenna
RightWheelStrutBKD
LeftWheelStrutBKD
RightNavLight_C
LeftNavLight_C
RightNavLight_D
LeftNavLight_D
fairing1D
fairing2D
fairing3D
PropellerD
SpinnerD
sim/model/livery/
texture
fuselage.png
material
wing_left
wing_center
wing_right
wing_leading_edge_left
wing_leading_edge_right
wing_leading_edge_center
flaps
rightaileron
leftaileron
wing_1Ledge
wing_1Redge
courtesyoff
wing_right_C
rightaileron_C
wing_leading_edge_right_C
wing_left_C
leftaileron_C
wing_leading_edge_left_C
wing_center_broke_left
wing_center_broke_right
wing_left_D
leftaileron_D
wing_leading_edge_left_D
wing_right_D
rightaileron_D
wing_leading_edge_right_D
sim/model/liverywing/
texture
wing.png
material
vstab
hstab
rudder_1
elevatorleft
elevatorright
elevatortrim
sim/model/liverytail/
texture
tail.png
material
Propeller.Fast
sim/model/liveryprop/
texture
prop.png
material
L-Float
R-Float
L-FloatC
R-FloatC
LHrudder
RHrudder
FloatStruts
L-FloatCD
R-FloatCD
L-FloatCB
R-FloatCB
L-FloatOD
R-FloatOD
L-FloatOB
R-FloatOB
LHrudderD
RHrudderD
LHrudderB
RHrudderB
sim/model/liveryfloat/
texture
floats.png
material
GROUP_Interior
Firewall
sim/model/liveryinterior/
texture
interior.png
material
GROUP_FrontPanels
sim/model/liverypanel/
texture
panel.png
material
GROUP_InteriorParts
sim/model/liveryparts/
texture
panel_parts.png
Pilot
Human/female-pilot.xml
0.2
-0.251
-1.4
Copilot
Human/male-copilot.xml
0.2
0.251
-1.4
LeftPassenger
Human/male-copilot.xml
0.9
-0.2
-1.45
RightPassenger
Human/male-copilot.xml
0.9
0.2
-1.45
select
Pilot
/sim/current-view/name
Cockpit View
/sim/current-view/name
IFR Training View
/sim/walker/outside
pax/pilot/present
sim/model/occupants
select
Copilot
sim/current-view/name
Cockpit Right Seat View
pax/co-pilot/present
sim/model/occupants
select
LeftPassenger
sim/current-view/name
Left Passenger Seat View
pax/left-passenger/present
sim/model/occupants
select
RightPassenger
sim/current-view/name
Right Passenger Seat View
pax/right-passenger/present
sim/model/occupants
LeftFrontGear
Lstrut.001
Ldamper
LAxle
LFrontWheel
RightFrontGear
Rstrut.001
Rdamper
RAxle
RFrontWheel
rotate
Ldamper
LAxle
LFrontWheel
8
-3.599
1.434
-2.189
0
-1
0
translate
LeftFrontGear
0.0
0.220
1.0
0.0
-3.553
1.430
-1.901
0.342
0
0.940
translate
Lstrut.002
0.0
0.115
1.0
0.0
-3.553
1.430
-1.901
0.342
0
0.940
rotate
Rdamper
RAxle
RFrontWheel
8
-3.599
-1.434
-2.189
0
-1
0
translate
RightFrontGear
0.0
0.220
1.0
0.0
-3.553
-1.430
-1.901
0.342
0
0.940
translate
Rstrut.002
0.0
0.115
1.0
0.0
-3.553
-1.430
-1.901
0.342
0
0.940
spin
LFrontWheel
75
0
-1
0
-2.1152
-1.14871
-2.07563
spin
RFrontWheel
75
0
-1
0
-2.10993
1.16615
-2.06557
rotate
LRtarm
LRAxle
LRwheel
0.07
15
-0.6019
-1.1513
-1.8621
0
-1
0
rotate
RRtarm
RRAxle
RRwheel
0.07
15
-0.6019
1.1676
-1.8621
0
-1
0
spin
LRwheel
52
0
-1
0
0.88361
-1.15147
-2.14853
spin
RRwheel
52
0
-1
0
0.88416
1.16754
-2.14826
translate
RHrudder
0.0
0.0
1.0
0.09
3.48832
1.15971
-1.61943
0
0
-1
rotate
RHrudder
30
surface-positions/rudder-pos-norm
3.5172
1.1571
-1.4308
-0.087
0
0.996
rotate
RHrudder
90
3.47
1.434
-1.63
0
1
0
translate
LHrudder
0.0
0.0
1.0
0.09
3.48777
-1.15794
-1.6197
0
0
-1
rotate
LHrudder
30
surface-positions/rudder-pos-norm
3.5172
-1.1571
-1.4308
-0.087
0
0.996
rotate
LHrudder
90
3.47
-1.434
-1.63
0
1
0
suitcase1
Interior/Baggages/suitcase1.xml
1.68
-0.14
-0.59
suitcase2
Interior/Baggages/suitcase2.xml
1.68
0.14
-0.59
select
suitcase1
payload/weight[4]/weight-lb
70.0
select
suitcase2
payload/weight[4]/weight-lb
20.0
rbf-pitot
Exterior/rbf/rbf.xml
-0.19
-1.525
0.300
select
rbf-pitot
pick
rbf-pitot
false
/sim/model/c172p/securing/pitot-cover-removable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
false
/sim/model/c172p/securing/pitot-cover-removable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-pitot-tube-cap
pick
PitotTube
false
/sim/model/c172p/securing/pitot-cover-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
true
property-assign
/instrumentation/airspeed-indicator/indicated-speed-kt
0.0
/sim/model/c172p/securing/pitot-cover-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
put-pitot-tube-cap
CowlPlugs
Exterior/cowlplugs/cowlplugs.xml
select
CowlPlugs
select
CowlPlugHotSpot
/sim/model/c172p/securing/cowl-plugs-addable
/sim/current-view/internal
/nasal/tutorial/loaded
pick
CowlPlugs
false
/sim/model/c172p/securing/cowl-plugs-removable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/securing/cowl-plugs-visible
false
/sim/model/c172p/securing/cowl-plugs-removable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-cowl-plugs
pick
CowlPlugHotSpot
false
/sim/model/c172p/securing/cowl-plugs-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
sim/model/c172p/securing/cowl-plugs-visible
true
/sim/model/c172p/securing/cowl-plugs-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
put-cowl-plugs
chock1
Exterior/chock/chock.xml
-0.01
0.0
0.008
chock2
Exterior/chock/chock.xml
0.32
0.0
0.020
translate
chock1
chock2
gear/gear[0]/compression-norm
0.30
0.3
0
1.0
select
chock1
chock2
0
woodenchock
Exterior/wooden-chock/woodenchock.xml
-0.029
0.0
-0.08
translate
woodenchock
gear/gear[0]/compression-norm
0.30
0.3
0
1.0
select
woodenchock
1
2
pick
chock1
chock2
woodenchock
false
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/securing/chock
false
/sim/model/c172p/securing/chock
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-wheel-chock
pick
NoseWheel
NoseWheelBK
false
/sim/model/c172p/securing/chock-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
sim/model/c172p/securing/chock
true
/sim/model/c172p/securing/chock-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
secure-with-wheel-chock
tiedownL
Exterior/tiedowns/tiedownL.xml
0.108
-2.2422
0.3528
-90.0
select
tiedownL
pick
tiedownL
TieDownLeft
false
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
false
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-left-tiedowns
select
TiedownHotSpotLeft
/sim/model/c172p/securing/tiedownL-addable
/sim/current-view/internal
/nasal/tutorial/loaded
pick
TiedownHotSpotLeft
false
/sim/model/c172p/securing/tiedownL-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
true
/sim/model/c172p/securing/tiedownL-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
secure-with-left-tiedowns
tiedownR
Exterior/tiedowns/tiedownR.xml
0.09974
2.24654
0.35544
90.0
select
tiedownR
pick
tiedownR
TieDownRight
false
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
false
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-right-tiedowns
select
TiedownHotSpotRight
/sim/model/c172p/securing/tiedownR-addable
/sim/current-view/internal
/nasal/tutorial/loaded
pick
TiedownHotSpotRight
false
/sim/model/c172p/securing/tiedownR-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
true
/sim/model/c172p/securing/tiedownR-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
secure-with-right-tiedowns
tiedownT
Exterior/tiedowns/tiedownT.xml
4.6955
-0.00184
-0.677
180.0
select
tiedownT
pick
tiedownT
TieDownTail
false
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
false
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
remove-tail-tiedowns
select
TiedownHotSpotTail
/sim/model/c172p/securing/tiedownT-addable
/sim/current-view/internal
/nasal/tutorial/loaded
pick
TiedownHotSpotTail
false
/sim/model/c172p/securing/tiedownT-addable
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
true
/sim/model/c172p/securing/tiedownT-addable
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
secure-with-tail-tiedowns
select
SumpHotSpotLeft
/consumables/fuel/contamination_allowed
/sim/current-view/internal
/nasal/tutorial/loaded
pick
SumpHotSpotLeft
true
false
/consumables/fuel/contamination_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
property-toggle
sim/model/open-pfuel-sump
nasal
/engines/active-engine/running
/consumables/fuel/contamination_allowed
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/consumables/fuel/contamination_allowed
nasal
/consumables/fuel/contamination_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
left-tank-drain-sump
select
SumpHotSpotRight
/consumables/fuel/contamination_allowed
/sim/current-view/internal
/nasal/tutorial/loaded
pick
SumpHotSpotRight
true
false
/consumables/fuel/contamination_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
property-toggle
sim/model/open-sfuel-sump
nasal
/engines/active-engine/running
/consumables/fuel/contamination_allowed
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/consumables/fuel/contamination_allowed
nasal
/consumables/fuel/contamination_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
set-tooltip
right-tank-drain-sump
pick
OilCap
false
/engines/active-engine/oil_consumption_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
sim/model/door-positions/oilDoor/position-norm
1
property-toggle
sim/model/show-dip-stick
/engines/active-engine/oil_consumption_allowed
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/engines/active-engine/oil_consumption_allowed
nasal
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/engines/active-engine/oil_consumption_allowed
nasal
/engines/active-engine/running
/fdm/jsbsim/gear/unit[1]/WOW
/fdm/jsbsim/gear/unit[19]/WOW
/fdm/jsbsim/gear/unit[23]/WOW
/fdm/jsbsim/hydro/active-norm
/engines/active-engine/oil_consumption_allowed
set-tooltip
oil-sump
translate
OilCap
sim/model/show-dip-stick
0.3
0.01
0.15
1.0
extinguisher
Interior/FE-ELT/fe.xml
-1.3
0.15
-0.2
-90.0
0.0
select
extinguisher
3
4
extinguisher-amphibious
Interior/FE-ELT/fe2.xml
-1.3
-0.075
-0.2
-90.0
0.0
select
extinguisher-amphibious
3
4
pick
elevatorleft
elevatorright
elevatortrim
false
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/control-surfaces/elevator-checked
true
pick
leftaileron
false
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/control-surfaces/left-aileron-checked
true
pick
rightaileron
false
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/control-surfaces/right-aileron-checked
true
pick
rudder
false
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
nasal
/engines/active-engine/running
/sim/model/c172p/cockpit/control-lock-placed
velocities/groundspeed-kt
1.0
/sim/current-view/internal
/nasal/tutorial/loaded
property-assign
/sim/model/c172p/control-surfaces/rudder-checked
true