-
Notifications
You must be signed in to change notification settings - Fork 32
How To: Convert Test Lite save to Test Flight
jwvanderbeck edited this page May 7, 2020
·
1 revision
If you are switching from Test Lite to Test Flight with an existing save, you will need to hand-edit your save data to avoid losing engine data. Below is a before (Test Lite) and after (Test Flight) example.
Important Note: Pay exacting attention to all whitespace, commas, etc. They must be precise or else the data will not load properly.
SCENARIO
{
name = ScenarioTestLite
scene = 7, 6, 5, 8
du
{
WAC-Corporal = 2335.04675631827
XASR-1 = 2375.86500713625
AJ10-27 = 10000
}
}
Note that flighttime
on all engines is simply set to 0.
SCENARIO
{
name = TestFlightManagerScenario
scene = 7, 6, 5, 8
saveData = settingsenabled:True,
partData
{
partName = WAC-Corporal
partData = flightdata:2335.04675631827,flighttime:0,
}
partData
{
partName = XASR-1
partData = flightdata:2375.86500713625,flighttime:0,
}
partData
{
partName = AJ10-27
partData = flightdata:10000,flighttime:0,
}
}