I am trying to add 6 crew members to my Vessel. I have the max seats avaialable to 6. And change this line:
sprintf(SendFocusScreenMessage(),"%i souls aboard ship %s, %i seats
available",Crew.GetCrewTotalNumber(),GetName(),6-Crew.GetCrewTotalNumber());
Thanks No Matter for this.
In the scnario I have 6 crew members listed:
ML:ML
STATUS Landed Moon
POS -33.4286660 41.1209490
HEADING 234.78
PRPLEVEL 0:1.000
NAVFREQ 0 0
XPDR 0
UMMUCREW Capt-Paul_Roper-41-65-74
UMMUCREW Eng-Frank_Craig-27-67-55
UMMUCREW Ast-Craig Collins-25-70-45
UMMUCREW Doc-Doug Jackson-45-70-45
UMMUCREW Sec-Keith_Ford-45-70-45
UMMUCREW Sci-Paul_Foster-45-70-45
END
But when I run it It says only 4 on board 2 seats available. Here is what the current scenario looks like:
ML:ML
STATUS Landed Moon
POS -33.4286660 41.1209490
HEADING 234.78
PRPLEVEL 0:1.000
NAVFREQ 0 0
XPDR 0
UMMUCREW Capt-Paul_Roper-41-65-74
UMMUCREW Eng-Frank_Craig-27-67-55
UMMUCREW Sec-Keith_Ford-45-70-45
UMMUCREW Sci-Paul_Foster-45-70-45
END
They are even in the .cpp
//default crew member used when the ship is spawned by Orbiter's scenerio editor.
Crew.AddCrewMember("Paul Roper",41,65,74,"Capt"); //(for name and id a-z A-Z 0-9 characters only)
Crew.AddCrewMember("Frank Craig",27,67,55,"Eng"); //(for name and id a-z A-Z 0-9 characters only)
Crew.AddCrewMember("Craig Collins",25,70,45,"Ast"); //(for name and id a-z A-Z 0-9 characters only)
Crew.AddCrewMember("Doug Jackson",45,70,45,"Doc" ); //(for name and id a-z A-Z 0-9 characters only)
Crew.AddCrewMember("Keith Ford",45,70,45,"Sec"); //(for name and id a-z A-Z 0-9 characters only)
Crew.AddCrewMember("Paul Foster",45,70,45,"Sci" ); //(for name and i