Everything works great! thanks a lot for releasing this awesomeness
However I just have 1 question, because I cant seem to enable the F11 function anymore
did these steps :
1. open AoP 2 folder
2. open engine.ini and set debugwindow = 0 to debugwindow = 1
3. close and save the file then go into program folder
4. open up _mod_on_off.h
5. set betatestmode function to on (on means there Dev version of the game)
6. close and save the file
7. start a new Game
Does this mean we cant fool around anymore
Did you edit any of the commands from F1-F30? If you changed or added something to one of them, like F26 for example, make sure in that command you have F26 listed as the key for that command. You should see three F26's in that line.
Example of mine that I edited....
string desc
F26 = "Full Crew Experience and Morale";
void CalculateInfoData
F26()
{
totalInfo = desc
F26;
ref mc = getmaincharacter();
// -->
mc.ship.Crew.Morale = 100;
ChangeCrewExp(mc, "Sailors", 100);
ChangeCrewExp(mc, "Cannoners", 100);
ChangeCrewExp(mc, "Soldiers", 100);
// <--
totalInfo = totalInfo + NewStr() + NewStr() +
"Experience and Morale Maxed!";
SetFormatedText("INFO_TEXT",totalInfo);
}
See how F26 is listed 3 times? Make sure all three in ones you have edited match whatever F key you you assigned it to, if you edited any the F commands.