Announcement

Collapse
No announcement yet.

Battle for Alpha Quadrant version 3 Released

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Battle for Alpha Quadrant version 3 Released

    When I was replaying it recently I realized that STBAQ had a rather dated feel and I finally got round to updating it to MGE as Version 3. Its got a full set of sounds now and many improved graphics but the main focus of the upgrade was on the AI. There are species specific event files now and the AI (especially Borg) is much improved now. Anyone who played version 2 will definitely feel the improvement.

    download from here -





    plus the patch to version 3.1







    Last edited by kobayashi; August 12, 2003, 07:20.
    .
    This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

  • #2
    Someone reported that the batch-file cannot work under their Windows XP? Is this true?

    In anycase, manually renaming the events file requires this knowledge.

    FEvents.txt = Playing as Federation
    KEvents.txt = Playing as Klingons
    REvents.txt = Playing as Romulans
    MEvents = Multiplayer game
    EEvents.txt = Playing as Neutrals /Orions if you ever want to.
    .
    This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

    Comment


    • #3
      yes its true, you need some other program for it to run, but i can't remember what it is...

      Comment


      • #4
        choice.com
        "I didn't invent these rules, I'm just going to use them against you."

        Comment


        • #5
          Simply add choice.com (it's a small file) to the zip and then all will work nice
          Trying to rehabilitateh and contribuing again to the civ-community

          Comment


          • #6
            Where does one obtain this 'choice.com'?
            .
            This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

            Comment


            • #7
              Originally posted by kobayashi
              Where does one obtain this 'choice.com'?
              probably on http://www.choice.com
              "Peace cannot be kept by force.
              It can only be achieved by understanding"

              Comment


              • #8
                Originally posted by Arthedain


                probably on http://www.choice.com
                that link goes to some shopping website

                Anyway I managed to come across the program but it doesn't seem to work as advertised (I was told by someone who tried it). The original screen disappears quickly and a second screen with just the options (like 1,2,3,4,x) and not the text replaces it.

                Would it work better if you dragged the batchfile onto the choice.com icon?

                And that aside, did anyone try BAQ3?
                .
                This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

                Comment


                • #9
                  I think techumseh once had a thread on choice.com. It does work in XP, but the number of arguments is critical. In W98, etc. you can get away with omitting an argument (the text argument?). Not so in XP. Can't find that thread, and I lost my emails on the subject. Tech, do you still have any info on that?

                  Someone (Mercator?) did note that you can drag a file onto a batch file containing a %1, and it will process that filename as the %1 argument.

                  Someone else (Angelo?) once posted a Windows script that would accomplish the same thing. Seemed a much better solution

                  If the choice problem persists, post the Bat file, and we'll try to debug it.
                  El Aurens v2 Beta!

                  Comment


                  • #10
                    Nothing fancy here, I think it was ripped off from Red Front originally.

                    @echo off
                    cls
                    echo.
                    echo ST-BAQ version 3.0
                    echo.
                    echo Please choose from the options below:
                    echo.
                    echo 1. Federation
                    echo 2. Klingons
                    echo 3. Romulans
                    echo 4. Multi-Player
                    echo 5. Easy Game
                    echo X. Exit without Loading
                    echo.
                    choice /c:12345X Enter your selection

                    if errorlevel 6 goto done
                    if errorlevel 5 goto five
                    if errorlevel 4 goto four
                    if errorlevel 3 goto three
                    if errorlevel 2 goto two
                    if errorlevel 1 goto one

                    ne
                    echo.
                    echo Play as Federation
                    @echo off
                    copy FEVENTS.txt EVENTS.txt
                    goto done

                    :two
                    echo.
                    echo Play as Klingons
                    @echo off
                    copy KEVENTS.txt EVENTS.txt
                    goto done

                    :three
                    echo.
                    echo Play as Romulans
                    @echo off
                    copy REVENTS.txt EVENTS.txt
                    goto done

                    :four
                    echo.
                    echo Three Human Players
                    @echo off
                    copy MEVENTS.txt EVENTS.txt
                    goto done

                    :five
                    echo.
                    echo Easy Game
                    @echo off
                    copy EEVENTS.txt EVENTS.txt
                    goto done

                    :done
                    echo.
                    exit
                    quit
                    .
                    This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

                    Comment


                    • #11
                      Here's the thread: http://apolyton.net/forums/showthrea...threadid=76483 I haven't yet rewriten the Red October Bat. files, though I'll get around to it eventually.

                      The scenario looks great Koby. I'll post more once I've played it. (If you want much discussion of your scenario around here, you need to add some German tanks! )
                      Tecumseh's Village, Home of Fine Civilization Scenarios

                      www.tecumseh.150m.com

                      Comment


                      • #12
                        Or some F15s!

                        PS
                        I am a major fan of your Sci-Fi scens, kobayashi!

                        Keep them coming!
                        http://sleague.apolyton.net/index.php?title=Home
                        http://totalfear.blogspot.com/

                        Comment


                        • #13
                          Originally posted by techumseh

                          The scenario looks great Koby. I'll post more once I've played it....

                          The date to beat is Sept 2307.
                          .
                          This is a link to...The Civilization II Scenario League and this is a link to...My Food Blog

                          Comment


                          • #14
                            The original screen disappears quickly and a second screen with just the options (like 1,2,3,4,x) and not the text replaces it.
                            Couldn't duplicate that.

                            Here's the batch file I tested (edited to eliminate copy error messages during testing):

                            @echo off
                            :start
                            cls
                            echo.
                            echo ST-BAQ version 3.0
                            echo.
                            echo Please choose from the options below:
                            echo.
                            echo 1. Federation
                            echo 2. Klingons
                            echo 3. Romulans
                            echo 4. Multi-Player
                            echo 5. Easy Game
                            echo X. Exit without Loading
                            echo.
                            choice /c:12345X Enter your selection
                            if errorlevel 6 goto done
                            if errorlevel 5 goto five
                            if errorlevel 4 goto four
                            if errorlevel 3 goto three
                            if errorlevel 2 goto two
                            if errorlevel 1 goto one
                            ne
                            echo.
                            echo Play as Federation
                            pause
                            goto start
                            :two
                            echo.
                            echo Play as Klingons
                            pause
                            goto start
                            :three
                            echo.
                            echo Play as Romulans
                            pause
                            goto start
                            :four
                            echo.
                            echo Three Human Players
                            pause
                            goto start
                            :five
                            echo.
                            echo Easy Game
                            pause
                            goto start
                            :done
                            echo.
                            exit
                            quit


                            The screen:
                            Attached Files
                            El Aurens v2 Beta!

                            Comment


                            • #15
                              Permission to upload the new version to the spanish Site, Kobayashi (I think we didn't even upload version 2)?
                              "Son españoles... los que no pueden ser otra cosa" (Cánovas del Castillo)
                              "España es un problema, Europa su solución" (Ortega y Gasset)
                              The Spanish Civilization Site
                              "Déjate llevar por la complejidad y cabalga sobre ella" - Niessuh, sabio cívico

                              Comment

                              Working...
                              X