I use the following settings in PROGRAM-->Internal Settings for my "Sail To" function:
// Sailto controls
#define SAILTO_MIN_SPEEDRATIO 0.85 // FLOAT - if your speed is less than this compared to your target's, can't sail-to. Note, also checks wind angle for you and the target running away, and rigtype for both.
#define SAILTO_MIN_DISTANCE 2000 // INT - if you are closer than this many units to the enemy ship, you can't sailto.
// Note: You have to be in realistic sailing mode for both above features to work
#define SAILTO_DISTANCE1 300.0 // FLOAT - Closest you'll find yourself to enemy when using sailto. Stock is 40.0. Used in AI_Sea.c
#define SAILTO_DISTANCE2 500.0 // FLOAT - Farthest you'll find yourself from enemy when using sailto. Stock is 100.0.
The virtue of these larger distances is that is makes "Sail To" a useful tool for skipping over long distance travel to reach a target ship but renders it worse than useless in repositioning yourself during combat. Granted you could just not make use of it during combat but, if you're like me, you'll just do it because it's there and convienant so perhaps this will help you avoid the temptation like it does for me.
// Sailto controls
#define SAILTO_MIN_SPEEDRATIO 0.85 // FLOAT - if your speed is less than this compared to your target's, can't sail-to. Note, also checks wind angle for you and the target running away, and rigtype for both.
#define SAILTO_MIN_DISTANCE 2000 // INT - if you are closer than this many units to the enemy ship, you can't sailto.
// Note: You have to be in realistic sailing mode for both above features to work
#define SAILTO_DISTANCE1 300.0 // FLOAT - Closest you'll find yourself to enemy when using sailto. Stock is 40.0. Used in AI_Sea.c
#define SAILTO_DISTANCE2 500.0 // FLOAT - Farthest you'll find yourself from enemy when using sailto. Stock is 100.0.
The virtue of these larger distances is that is makes "Sail To" a useful tool for skipping over long distance travel to reach a target ship but renders it worse than useless in repositioning yourself during combat. Granted you could just not make use of it during combat but, if you're like me, you'll just do it because it's there and convienant so perhaps this will help you avoid the temptation like it does for me.
Last edited: