Hello everyone, great work to everyone involved @ the modding.
I was playing around with the source code and made 2 small changes :
<b>1.- Changed the Button "R" function in Battle Mode, the first idea i had was to change the key map to other key because i hate pressing "R" while in battle LOL <img src="style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid="
" border="0" alt="biggrin.gif" /> , so modded it and made 2 different speed modes using the mouse LEFT and RIGHT Buttons, pressing LEFT mouse button speeds up simulaton speed at 3x and RIGHT speeds up to 20x ( I like to use the 3D Person view instead of the WorldMap, so in long voyages 20x mode helps to save some time while you admire the beauty of the sea, making the travel more realistic and you can watch the storm aproaching <img src="style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid="
" border="0" alt="biggrin.gif" /> )</b>
This is the code I added / changed :
<b>Interface.c</b>
//MOD_____________________________________________
float GetSeaTimeScale()
{
return 3.0;
}
float GetSeaTimeScale2()
{
return 20.0;
}
//MOD_____________________________________________
<b>init_pc.c</b>
//MOD_____________________________________________
CI_CreateAndSetControls( "", "TimeScale", CI_GetKeyCode("VK_LBUTTON"), 0, false );
CI_CreateAndSetControls( "", "TimeScale2", CI_GetKeyCode("VK_RBUTTON"), 0, false );
//MOD_____________________________________________
<b>BattleInterface.c</b>
//MOD_____________________________________________
case "TimeScale2":
if(IsPerkIntoList("TimeSpeed"))
{
SetTimeScale(1.0);
DelPerkFromActiveList("TimeSpeed");
}
else
{
SetTimeScale(GetSeaTimeScale2());
AddPerkToActiveList("TimeSpeed");
}
break;
//MOD_____________________________________________
<b>2.- Speeded up the DEAD scene when the Game over picture shows up , it showed up too much time for me and it was configured to "3000" cycles, so changed it to "500" <img src="style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid="
" border="0" alt="biggrin.gif" /> </b>
This is the code I added / changed :
<b>interface.c</b>
//MOD_____________________________________________
PostEvent( "PictureAsVideoBreak", 500 );
//MOD_____________________________________________
Do you guys like the idea of the dual speed? If so i can upload the finished files somewhere.
Also if anyone needs help maybe i can give ya a hand with the coding.
PD. the anchor & rowing boat project sounds good, everything is posible since the developers left the source code very open!
PD2. the brothel stuff at the supermod is nice!!!