I found this string here
void JoinNavy(int iNation)
{
int i;
ref ch;
string model;
ref pchar = GetMainCharacter();
if(iNation == PERSONAL_NATION)
{
DeleteAttribute(pchar, "professionalnavy");
return;
}
SetRelationsAsNation (iNation);
ReceiveLetterOfMarque(iNation);
if(iNation != PIRATE)
{
SetRank(pchar, iNation, 1);
pchar.professionalnavy = iNation;
pchar.boardingmodels = "Soldiers";
pchar.boardingmodels.nation = iNation;
for (i = 1; i <= 5; i++)
{
ch = CharacterFromID("Crewmember_0" + i);
model = GetRandomModelForTypeExSubCheck(true, "Soldiers", "man", iNation);
SetModelfromArray(ch, GetModelIndex(model));
}
for (i = 1; i <= 10; i++)
{
ch = CharacterFromID("Treas_Crewmember_" + i);
model = GetRandomModelForTypeExSubCheck(true, "Soldiers", "man", iNation);
SetModelfromArray(ch, GetModelIndex(model));
}
}
else
DeleteAttribute(pchar, "professionalnavy");
}
I am by no means a master of using the console, lets say I wanted to change boarding crew to the spanish soldiers, which lines would I copy in to the console?