|
@@ -1821,6 +1821,8 @@ class ScriptTerror(object):
|
|
elif self.state == 2:
|
|
elif self.state == 2:
|
|
if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
if prompt.startswith('Engage the Autopilot? (Y/N/Single step/Express) [Y]'):
|
|
self.queue_player.put("E")
|
|
self.queue_player.put("E")
|
|
|
|
+ elif prompt.startswith('Stop in this sector (Y,N,E,I,R,S,D,P,?) (?=Help) [N] ?'):
|
|
|
|
+ self.queue_player.put("N")
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
elif re.match(r"Command \[TL=.* \(\?=Help\)\? :", prompt):
|
|
# We should be where we wanted to.
|
|
# We should be where we wanted to.
|
|
ports = ScriptPort(self.game)
|
|
ports = ScriptPort(self.game)
|
|
@@ -1834,7 +1836,12 @@ class ScriptTerror(object):
|
|
if self.state == 1:
|
|
if self.state == 1:
|
|
if line.startswith('The shortest path ('):
|
|
if line.startswith('The shortest path ('):
|
|
self.state = 2
|
|
self.state = 2
|
|
-
|
|
|
|
|
|
+ elif line.startswith("You are already in that sector!"):
|
|
|
|
+ # Whoops.
|
|
|
|
+ ports = ScriptPort(self.game)
|
|
|
|
+ d = ports.whenDone()
|
|
|
|
+ d.addCallback(self.journey_on)
|
|
|
|
+ d.addErrback(self.journey_on)
|
|
|
|
|
|
|
|
|
|
class ProxyMenu(object):
|
|
class ProxyMenu(object):
|