|
@@ -927,11 +927,13 @@ class ScriptPort(object):
|
|
self.state = 6
|
|
self.state = 6
|
|
elif self.state == 6:
|
|
elif self.state == 6:
|
|
if "We are buying up to" in line:
|
|
if "We are buying up to" in line:
|
|
|
|
+ log.info("buying up to -- so sell all")
|
|
# Sell
|
|
# Sell
|
|
self.state = 7
|
|
self.state = 7
|
|
self.queue_player.put("\r")
|
|
self.queue_player.put("\r")
|
|
self.sell_percent = 100 + self.percent
|
|
self.sell_percent = 100 + self.percent
|
|
if "We are selling up to" in line:
|
|
if "We are selling up to" in line:
|
|
|
|
+ log.info("selling up to -- state 8 / set percent")
|
|
# Buy
|
|
# Buy
|
|
self.state = 8
|
|
self.state = 8
|
|
self.sell_percent = 100 - self.percent
|
|
self.sell_percent = 100 - self.percent
|
|
@@ -944,9 +946,11 @@ class ScriptPort(object):
|
|
log.warn("We have a problem -- they aren't buying what we have in stock!")
|
|
log.warn("We have a problem -- they aren't buying what we have in stock!")
|
|
stuff = line[0] # F O or E.
|
|
stuff = line[0] # F O or E.
|
|
if self.game.gamedata.port_buying(self.other_sector, stuff):
|
|
if self.game.gamedata.port_buying(self.other_sector, stuff):
|
|
|
|
+ log.info("fixable")
|
|
self.fixable = True
|
|
self.fixable = True
|
|
|
|
|
|
if "You don't have anything they want" in line:
|
|
if "You don't have anything they want" in line:
|
|
|
|
+ log.warn("Don't have anything they want.")
|
|
# Neither! DRAT!
|
|
# Neither! DRAT!
|
|
if not self.fixable:
|
|
if not self.fixable:
|
|
self.state = 99
|
|
self.state = 99
|
|
@@ -968,11 +972,18 @@ class ScriptPort(object):
|
|
self.sell_percent -= 1
|
|
self.sell_percent -= 1
|
|
self.queue_player.put("{0}\r".format(price))
|
|
self.queue_player.put("{0}\r".format(price))
|
|
if "We are selling up to" in line:
|
|
if "We are selling up to" in line:
|
|
|
|
+ log.info("selling up to / state 8 / set percent")
|
|
# Buy
|
|
# Buy
|
|
self.state = 8
|
|
self.state = 8
|
|
- self.sell_percent = 100 - self.percent
|
|
|
|
|
|
+ self.sell_percent = 100 - self.percent
|
|
|
|
+ if "We are buying up to" in line:
|
|
|
|
+ log.info("buying up to -- so sell all")
|
|
|
|
+ # Sell
|
|
|
|
+ self.state = 7
|
|
|
|
+ self.queue_player.put("\r")
|
|
|
|
+ self.sell_percent = 100 + self.percent
|
|
if "We're not interested." in line:
|
|
if "We're not interested." in line:
|
|
- log.info("Try, try again. :(")
|
|
|
|
|
|
+ log.info("Not interested. Try, try again. :(")
|
|
self.state = 5
|
|
self.state = 5
|
|
self.trade()
|
|
self.trade()
|
|
if "WHAT?!@!? you must be crazy!" in line:
|
|
if "WHAT?!@!? you must be crazy!" in line:
|
|
@@ -997,7 +1008,7 @@ class ScriptPort(object):
|
|
self.sell_percent += 1
|
|
self.sell_percent += 1
|
|
self.queue_player.put("{0}\r".format(price))
|
|
self.queue_player.put("{0}\r".format(price))
|
|
if "We're not interested." in line:
|
|
if "We're not interested." in line:
|
|
- log.info("Try, try again. :(")
|
|
|
|
|
|
+ log.info("Not interested. Try, try again. :(")
|
|
self.state = 5
|
|
self.state = 5
|
|
self.trade()
|
|
self.trade()
|
|
|
|
|