|
@@ -2497,11 +2497,11 @@ class ColoScript(object):
|
|
|
repeat x times! \o/
|
|
|
|
|
|
States:
|
|
|
- 1 = Computer, Your Planets, Quit Computer
|
|
|
- 2 = Grab planets from list, ask user which planet
|
|
|
+ 1 = Talk to computer, find planets of corp and personal
|
|
|
+ 2 = Grab planets from list, ask user which planet to populate
|
|
|
3 = Move to Sector 1
|
|
|
- 4 = Finish Moving, load people, then move to sector with planet
|
|
|
- 5 = Finish Moving, init land
|
|
|
+ 4 = load people, then move to sector with planet
|
|
|
+ 5 = init land
|
|
|
6 = Decide to loop (jump to 3), Unload people
|
|
|
"""
|
|
|
def __init__(self, game):
|
|
@@ -2519,6 +2519,8 @@ class ColoScript(object):
|
|
|
self.planets = {}
|
|
|
self.loops = 0
|
|
|
self.maxloops = 0
|
|
|
+ # Split up colonist so we don't deposit all into fuel ore
|
|
|
+ self.nextCat = 1
|
|
|
|
|
|
# Activate
|
|
|
self.prompt = game.buffer
|
|
@@ -2717,10 +2719,16 @@ class ColoScript(object):
|
|
|
self.loops -= 1
|
|
|
if self.loops:
|
|
|
self.state = 3
|
|
|
- self.send2game("S\r\r1\rQ")
|
|
|
+ self.send2game("S\r\r{0}\rQ".format(self.nextCat))
|
|
|
+ self.nextCat += 1
|
|
|
+ if self.nextCat > 3:
|
|
|
+ self.nextCat = 1
|
|
|
# Jump to state 3 we are not done
|
|
|
else:
|
|
|
- self.send2game("S\r\r1\rQ")
|
|
|
+ self.send2game("S\r\r{0}\rQ".format(self.nextCat))
|
|
|
+ self.nextCat += 1
|
|
|
+ if self.nextCat > 3:
|
|
|
+ self.nextCat = 1
|
|
|
self.send2player("\r" + Boxes.alert("Completed ({0})".format(self.maxloops)))
|
|
|
self.deactivate(True)
|
|
|
# Ok we are done
|