Getting started¶
Once you have installed the library the fun can begin! To get started import the library in your python project like so:
1 |
|
Define the file you will be reading from and where you will be writing your new file to.
Where to find your scenario files
The scenarios can usually be found here:
C:\Users\<USERNAME>\Games\Age of Empires 2 DE\<STEAMID>\resources\_common\scenario
The STEAMID
folder is your steam ID and looks something like: 12345678901234567
1 2 |
|
Do not overwrite your source scenario
It is recommended to not overwrite the file you will be reading for backup reasons.
Now create the Scenario
object with the filename as parameter.
1 |
|
Managers¶
You can now edit to your heart's content. Every aspect of the scenario is seperated in managers. Not all parts are currently supported. The following list shows the current support and use of all available managers:
Manager | Description |
---|---|
trigger_manager | The trigger manager is used for creating, editing and removing Triggers, Conditions, Effects and Variables. |
unit_manager | The unit manager is used for creating, editing and removing Units. This includes buildings and heroes etc. |
map_manager | The map manager is used for changing terrain, elevation or simply getting coordinates for certain types. |
player_manager | The player manager is used to edit player attributes such as civs, starting age, diplomacy, disables etc. |
xs_manager | The XS manager is used to store XS in a script_call effect to make it easily transferable in Multiplayer |
message_manager | The Message manager is used to edit the fields in the Messages tab in the in-game editor. |
You can access all managers like so:
1 2 3 4 5 |
|
After you're done editing, you can save your work and write it to an aoe2scenario
file:
1 |
|