Announcement

Collapse
No announcement yet.

Placing a Fortress via a event?!

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

  • Placing a Fortress via a event?!

    What events text will I need to place a Fortress at say map location 64,126

    Below is a example of how to change terrain from water to say plains, I am hoping all I need is the terrain type number from someone for a fortress! or do I need to do something else.

    @IF
    TURN
    turn=20
    @THEN
    TEXT
    ^The Don river freezes in the harsh Russian winter and the pack ice crushes
    the German pontoon bridge erected near Stalingrad last summer.
    ENDTEXT
    CHANGETERRAIN
    terraintype=1
    maprect
    65,129,65,129,65,129,65,129
    @ENDIF

    @IF
    TURN
    turn=20
    @THEN
    CHANGETERRAIN
    terraintype=10
    maprect
    65,129,65,129,65,129,65,129
    @ENDIF
    ---------------------------------------------
    Pavlov Zangalis - Hero of the capture of Berlin RFDG.
    ---------------------------------------------

  • #2
    It's not possible. CHANGETERRAIN can only change to 1 of the 11 terraintypes.
    The other possibility would be to make a strong immovable unit and put that on the place you want with the CREATEUNIT event.
    Civilization II: maps, guides, links, scenarios, patches and utilities (+ Civ2Tech and CivEngineer)

    Comment


    • #3
      Thank you

      Thanks!
      ---------------------------------------------
      Pavlov Zangalis - Hero of the capture of Berlin RFDG.
      ---------------------------------------------

      Comment

      Working...
      X