Page 1 of 1
[WAD][B1825] Cannot set the mission's takeoff, start, and end times via Lua.
Posted: Fri Feb 27, 2026 2:27 pm
by stepbackjumper2

Cannot set the mission's takeoff, start, and end times via Lua.
Re: [B1825] Cannot set the mission's takeoff, start, and end times via Lua.
Posted: Fri Feb 27, 2026 4:40 pm
by michaelm75au
The expected date format is 'DDMMYYYY' for the wrapper.
However, we have added some override formats to help with the various ways the date can be shown. The character ! after the timestamp tells program how to interpret the string.
m.starttime = "2027-06-09 1:30:00!yyyy-MM-dd H:mm:ss"
m.starttime = "09/06/2027 01:30:00!dd/MM/yyyy HH:mm:ss"
Re: [B1825] Cannot set the mission's takeoff, start, and end times via Lua.
Posted: Fri Feb 27, 2026 9:42 pm
by stepbackjumper2
It works. Thank you.