ソースを参照

Minor changes to ScriptExplore

Removed stuff we don't use, like times to execute.
david 5 年 前
コミット
cd9d9aa0a8
1 ファイル変更4 行追加11 行削除
  1. 4 11
      flexible.py

+ 4 - 11
flexible.py

@@ -1009,7 +1009,8 @@ class ScriptPort(object):
         #     return
 
 class ScriptExplore(object):
-    """ Script Explore
+    """ Script Explore v1.00
+        By: David Thielemann
 
         WARNINGS:
          We assume the player has a Holo-Scanner!
@@ -1028,8 +1029,6 @@ class ScriptExplore(object):
         self.clear = []         # Warps that we know are clear
         self.highsector = 0     # Selected Sector to move to next!
         self.highwarp = 0       # Selected Sector's Warp Count!
-        self.times = 5          # How many times have we gone thru this? (Maybe add a simple question for if the user doesn't want it to run forever)
-        self.maxtimes = self.times
 
         # Activate
         self.prompt = game.buffer
@@ -1184,13 +1183,7 @@ class ScriptExplore(object):
             self.highsector = 0
             self.state = 1
             
-            # To prevent infinite loop we ask for how many times to execute!
-            #self.times -= 1
-            # If we hit our last turn end ourselves, Note the user can always manually abort via sending any key!
-            # And now if we find no new sectors we will also abort as well!
-            #if self.times <= 0:
-            #    self.send2player("Completed {0} Times".format(self.maxtimes))
-            #    self.deactivate()
+            # We are in a infinite Loop! Warning! Yes we can and will eat all the turns! :P
 
 
        
@@ -1521,7 +1514,7 @@ class ProxyMenu(object):
             )
 
         menu_item("1", "Ports (Trades between two sectors)")
-        menu_item("2", "Explore (Travel the universe auto-magically)")
+        menu_item("2", "Explore (Strange new sectors)")
         menu_item("3", "TODO")
         menu_item("X", "eXit")
         self.queue_game.put("   " + c1 + "-=>" + self.r + " ")