kamini Posted June 27, 2023 Posted June 27, 2023 So far I tested it only with replays from 4YA training server but whenever I try to watch a replay it hangs because of a LUA error and never continues. action can be nil and type is a table. So it fails on this line: local t = wptByType[type .. ':' .. action] My temporary solution is to edit MissionEditor/modules/me_route.lua and replace the code from waypointActionToType function with this. function waypointActionToType(type, action, groupType) if not wptByType then wptByType = createWaypointsIndex(actions) end if action == nil then action = "" end type = "" local t = wptByType[type .. ':' .. action] if not t then if groupType == 'plane' or groupType == 'helicopter' or groupType == 'ship' then t = actions.turningPoint else if 'On Road' == action then t = actions.onRoad else t = actions.offRoad end end end return t end dcs.log
ED Team BIGNEWY Posted June 27, 2023 ED Team Posted June 27, 2023 please attach the track replay which is creating the problem thanks Forum rules - DCS Crashing? Try this first - Cleanup and Repair - Discord BIGNEWY#8703 - Youtube - Patch Status Windows 11, NVIDIA MSI RTX 3090, Intel® i9-10900K 3.70GHz, 5.30GHz Turbo, Corsair Hydro Series H150i Pro, 64GB DDR @3200, ASUS ROG Strix Z490-F Gaming, PIMAX Crystal
kamini Posted July 15, 2023 Author Posted July 15, 2023 On 6/27/2023 at 1:28 PM, BIGNEWY said: please attach the track replay which is creating the problem thanks Sorry for the late response but I only recently got notified about it. 4YA_Sin_PVE2_V2.4_[04_JUN_FEW_NIGHT]-20230627-223600.trk
Recommended Posts