I think that a point that has not been mentioned much is the events in the game. Basically, I would like everything to be able to be controlled by events.
Here is a list of events I want included IN ADDITION to those that are already in Test of Time. (See Test of Time section if you don't know what events were added in TOT)
TRIGGERS:
I'll add more...
Add a Counter. This would make it so that it keeps track of how many times something occurs. There can be up to three counters per civilization at any time like the Flags. You make an event like:
@IF
CityBuild
unit=Bomber
city=London
@THEN
Counter
who=English
counter=1
@ENDIF
And it can be used like this:
@IF
CheckCounter
counter=1
number=5
@THEN
Text
"The English are well underway in the
rebuilding of their airforce!"
EndText
@ENDIF
ANd there should be a ResetCounter action as well.
------------------
"...The highest realization of warfare is to attack the enemy's plans; next is to attack their alliances; next to attack their army; and the lowest is to attack their fortified cities." - Sun Tzu
Dom Pedro II.... aka Hannibal3
Dom Pedro II - 2nd and last Emperor of the Empire of Brazil (1831 - 1889).
Here is a list of events I want included IN ADDITION to those that are already in Test of Time. (See Test of Time section if you don't know what events were added in TOT)
TRIGGERS:
- If Unit Enters Square
- If Diplomatic Status Changed
- If UnitKilled [add by what unit]
- If CityBuilt (meaning if new city constructed)
ACTIONS: - Then Change Diplomatic Status
- Then Change Government
- Then Add Tile Improvement
- Then Change Leader Name
- Then Change Civilization Name
- Then Change City Ownership
- Then Change Unit Ownership
I'll add more...
Add a Counter. This would make it so that it keeps track of how many times something occurs. There can be up to three counters per civilization at any time like the Flags. You make an event like:
@IF
CityBuild
unit=Bomber
city=London
@THEN
Counter
who=English
counter=1
@ENDIF
And it can be used like this:
@IF
CheckCounter
counter=1
number=5
@THEN
Text
"The English are well underway in the
rebuilding of their airforce!"
EndText
@ENDIF
ANd there should be a ResetCounter action as well.
------------------
"...The highest realization of warfare is to attack the enemy's plans; next is to attack their alliances; next to attack their army; and the lowest is to attack their fortified cities." - Sun Tzu
Dom Pedro II.... aka Hannibal3
Dom Pedro II - 2nd and last Emperor of the Empire of Brazil (1831 - 1889).
Comment