With that information we can make some educated guesses:... all we know is Artemis 2 is currently set sometime in November 2024.

void ARTEMIS2::clbkLoadStateEx(FILEHANDLE scn, void* status)
{
char* line;
int value;
while (oapiReadScenario_nextline(scn, line))
{
if (!_strnicmp(line, "MODE", 4)) {
sscanf_s(line + 4, "%d", &value);
mode = (int)value;
}
if (!_strnicmp(line, "CHAIR", 5)) {
sscanf(line + 5, "%d ", &CHAIRDEPLOY);
}
if (!_strnicmp(line, "HATCH", 5)) {
sscanf(line + 5, "%d%lf", &HATCH_status, &HATCH_proc);
}
if (!_strnicmp(line, "TABLE", 5)) {
sscanf(line + 5, "%d%lf", &TABLE_status, &TABLE_proc);
}
ParseScenarioLineEx(line, status);
}
SetAnimation(anim_SPANELFOLD, SPANELFOLD_proc);
SetAnimation(anim_HATCH, HATCH_proc);
SetAnimation(anim_TABLE, TABLE_proc);
SetAnimation(anim_SPANEL1ROTATE, WING1ROTATE_proc);
SetAnimation(anim_SPANEL2ROTATE, WING2ROTATE_proc);
SetAnimation(anim_SPANEL3ROTATE, WING3ROTATE_proc);
SetAnimation(anim_SPANEL4ROTATE, WING4ROTATE_proc);
}
artemis2:ARTEMIS2
MODE 0
CHAIR 0
HATCH 1 1.0000
TABLE 1 1.0000
STATUS Orbiting Earth
RPOS 6393606.434 -26.051 2868717.151
RVEL -3088.8946 -0.1667 6880.5146
AROT 0.000 -0.047 0.000
AFCMODE 7
NAVFREQ 0 0
XPDR 0
END
Honestly no idea it seems to fixed its self@gattispilot what ended up being the cause of the CTDs? I did my best trying to find that but I was probably looking in the wrong place.