public void Game_Update()
 {
     // Random tick then checking
     if (rand.NextDouble() < settings.checkinProbability)
     {
         cpm.log("crew progression mod checkin");
         cpm.ExecuteTickedEvents(GameAPI.Game_GetTickTime());
     }
 }