|
@@ -2656,7 +2656,7 @@ class ColoScript(object):
|
|
self.queue_player.put("N")
|
|
self.queue_player.put("N")
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
self.state = 4
|
|
self.state = 4
|
|
- self.send2game("1\rE")
|
|
|
|
|
|
+ self.send2game("1\r")
|
|
# Move to sector 1, Terra
|
|
# Move to sector 1, Terra
|
|
elif self.state == 4:
|
|
elif self.state == 4:
|
|
# Moving to Terra
|
|
# Moving to Terra
|
|
@@ -2679,6 +2679,10 @@ class ColoScript(object):
|
|
self.send2game("\r\r{0}\r".format(self.planet_sector))
|
|
self.send2game("\r\r{0}\r".format(self.planet_sector))
|
|
self.state = 6
|
|
self.state = 6
|
|
# No Planetary Scanner Detected, Move to sector with planet
|
|
# 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:
|
|
elif self.state == 6:
|
|
# Moving from Terra to planet_sector
|
|
# Moving from Terra to planet_sector
|
|
if prompt.startswith('Do you want to engage the TransWarp drive? '):
|
|
if prompt.startswith('Do you want to engage the TransWarp drive? '):
|