-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbft_prep.html
More file actions
77 lines (71 loc) · 4.1 KB
/
Copy pathbft_prep.html
File metadata and controls
77 lines (71 loc) · 4.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/custom.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Oswald" rel="stylesheet">
<link href="font/stylesheet.css" rel="stylesheet">
<title>Squadron FFS</title>
</head>
<body>
<!-- Page Container -->
<div class="container">
<!-- Nav Bar -->
<div class="row">
<div class="col-xs-">
<div id="cnavbar"></div>
</div>
</div>
<div class="row">
<div class="col-xs-">
<div class="embed-responsive embed-responsive-16by9">
<iframe class ="center-block" width="650" height="405" src="https://www.youtube.com/embed/vGX9Gh0JnUo?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
<h1 class="text-center"> Basic Flight Training Preparation</h1>
<hr>
<div>
<p>
All applicants, trainees, and other such interested pilots watch the above video - and take notes - in order to prepare yourself for Basic Flight Training.
FFS does Basic Flight Training in the Bf 109 because it's the most simple aircraft to fly due to its automation. As such, some things you must do before the formal training class are bind & memorize these additional non-standard key bindings for the Bf 109:
<br>
<br>
<ul class="lgray">
<li><strong>"Adjustable stabilizer axis":</strong> (bind two keys or an axis to this ONE key binding)</li>
<li><strong>"Switch propellers pitch control mode: manual/auto": </strong>(This turns off automatic prop pitch in the 109 - essential for emergency engine procedures)</li>
<li><strong>"Propellers: high pitch"</strong></li>
<li><strong>"Propellers: low pitch"</strong></li>
<li>Please change the <strong>"Tail wheel lock/unlock"</strong> binding to something not on the <kbd>G</kbd> key to avoid ground accidents. I use <kbd>/</kbd>, for example class.
<li>Please change the <strong>"Engage engines start procedure / Stop engine"</strong> binding to a modifier key plus <kbd>Home</kbd> to avoid accidentally stopping your engine during normal flight operations. I use <kbd>RWin + Home</kbd>, for example. That's the standard DCS:World key binding for engine starts, so it's easy to remember.</li>
</ul>
<br>
</p>
<p>
These are not optional steps, these are to ensure that training goes smoothly and we aren't spending our time instructing on key bindings or dealing with accidents that slow down training. Failure to do this will result in being told to leave training and come back during the next class.
<br><br>
Good luck with training! I look forward to you all passing and being welcomed into FFS!
<br><br><footer class="lgray"><small><cite>Video credit goes to Reqiuem and those at the Air Combat Tutorial Library for their amazing video guides like the one above. Check out his youtube channel in the links dropdown.</cite></small></footer>
</p>
</div>
</div>
</div>
</div>
<script>
$.get("./nav.html", function(data){
$("#cnavbar").replaceWith(data);
});
</script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<!-- <script src="assets/js/ie10-viewport-bug-workaround.js"></script> -->
</body>
</html>