Просмотр исходного кода

ColoScript, Reworked auto-warp

In Prison I encountered an issue where it would fail to move because it
thought it was already there at sector 1... except it still needed to go
there.
david 5 лет назад
Родитель
Сommit
27ec1b0d93
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      flexible.py

+ 5 - 1
flexible.py

@@ -2656,7 +2656,7 @@ class ColoScript(object):
                 self.queue_player.put("N")
             elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):             
                 self.state = 4
-                self.send2game("1\rE")
+                self.send2game("1\r")
                 # Move to sector 1, Terra
         elif self.state == 4:
             # Moving to Terra
@@ -2679,6 +2679,10 @@ class ColoScript(object):
                 self.send2game("\r\r{0}\r".format(self.planet_sector))
                 self.state = 6
                 # No Planetary Scanner Detected, Move to sector with planet
+            elif prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
+                self.send2game("E")
+                self.state = 4
+                # We are not at terra, go back
         elif self.state == 6:
             # Moving from Terra to planet_sector
             if prompt.startswith('Do you want to engage the TransWarp drive? '):