Understanding Saveship.cs

I am using Sanderling ABot and poking around the code without any knowledge and im curious to what the line “const int AllowAnomalyEnterSessionDurationMin = AllowRoamSessionDurationMin + 60 * 7;” means. What does it mean by roam session?

Welcome @hackerman!

There is no roam session. These two words ended up in this sequence because several words were concatenated.
The SessionDuration is the timespan we expect to be able to continue playing. So this can be affected for example by eve online downtime.
The AllowAnomalyEnterSessionDurationMin is used as a lower bound (the Min part implies a lower bound) for this expected duration to allow the bot to enter an anomaly. The idea is to not enter an anomaly shortly before shutdown.

1 Like