Recent content by gattispilot

  1. gattispilot

    Base Artemis 4 landing sites

    Thanks. Some are dark. This one looks good. This looks good. BUT now questions. Not sure why my mk2 lander is not conforming with the slope. One bad thing is I apply hover to land it, it moves all over and goes upside down Here is another orbiter problem. You can have only 8 light...
  2. gattispilot

    Programming Question Touchdown and eva

    How to do this? I have a vessel of a box I can pick it up and move it. But drop it and it goes under the surface, What I would really like is a cheat where if not attached then forced landed Melissa_Lewis:2016SEVASOLIDRED STATUS Landed Moon POS -6.8116090 -80.3592728 HEADING 66.56 ALT...
  3. gattispilot

    Request Artemis landers

    Adjusted the dock. But I think the docking target would now need to be on the strut? I still got to do work on the moveable dock. It draws the ship to far into the ship. on reload it is good.
  4. gattispilot

    OHM STS-110 Space Shuttle Vessel(SSV) Mission

    Sc3/4 does not work in 2024.
  5. gattispilot

    Programming Question Touchdown and eva

    Thanks. one easy? question How can set the vs2 heading. it needs to be 80 degrees.
  6. gattispilot

    Programming Question Touchdown and eva

    Thanks. Works great now.
  7. gattispilot

    Programming Question Touchdown and eva

    What does your key press code look like I can try that
  8. gattispilot

    Updates Artemis 4 and 5 SLS

    Using ms2015 I get this: It basically is a 1 stage rocket No clue what the orbit parameters should be?
  9. gattispilot

    Programming Question Touchdown and eva

    Thanks So I have this: case IDC_EVA1: if (sts->crew1_on_board == 1) { sts->spawneva1 = 1; sts->ConfigureCrewMeshes(); return 0; } so if the button for eva1 is pressed spawneva=1 and in void FLEXUACS::clbkPostStep(double...
  10. gattispilot

    Programming Question Touchdown and eva

    I am using 2016 also. So it did not matter if you were at the poles or equator? the guy exited the same location?
  11. gattispilot

    Discussion Mesh making with Blender

    Just checking to see if the steamrunner and Olympic good to move on.
  12. gattispilot

    Programming Question Touchdown and eva

    Thanks. So I have this: I moved the exit point to -7.6 { if (crew1_on_board == 1) { OBJHANDLE hMoon = GetSurfaceRef(); VESSELSTATUS2 vs2; memset(&vs2, 0, sizeof(vs2)); vs2.version = 2; GetStatusEx(&vs2); VECTOR3 eva_offset_local = _V(-7.6...
  13. gattispilot

    Programming Question Touchdown and eva

    Thanks. I think this is correct: void FLEXUACS::SpawnEVA(void) { if (crew1_on_board == 1) { double rt = oapiGetSize(GetSurfaceRef()); double moon_circ = rt * 2.0 * PI; double each_deg = moon_circ / 360.0; VESSELSTATUS2 vs2; memset(&vs2, 0...
  14. gattispilot

    Programming Question Touchdown and eva

    So I thought I had this fixed. Using the LWLL code. BUT when the craft is near the poles it doesn't work. I remember this same issue with driving. But that is fixed. Any ideas? @Max-Q if (crew1_on_board == 1) { double rt = oapiGetSize(GetSurfaceRef()); double moon_circ = rt...
Back
Top