Update:
- Possible to append or overwrite info in bookmarks from several files
- Now possible to mod the pick era interface
Changes to bookmarks:
Now have a token name (bm_charlemagne) and three additional properties, era, picture and custom_start.
era = yes means that it should be used in the era screen
picture = NAME is the picture that should be used in the era screen
custom_start = yes means that it is the bookmark that should be used if the player clicks directly on custom start in the era screen
The era screen use those bookmarks flagged with
era = yes (but no more than 5 - and it picks them chronological). If no one is found it will just use the first bookmark. For the title it will look for a localization key based on name (BM_CHARLEMAGNE) plus
_ERA. Tor the text it looks for (BM_CHARLEMAGNE) plus
_ERA_INFO.
Example:
Code:
bm_charlemagne = {
name = "BM_CHARLEMAGNE"
desc = "BM_BM_CHARLEMAGNE_DESC"
date = 769.1.1
era = yes
picture = GFX_pick_era_image_1
selectable_character = {
id = 6392 # Charlemagne
age = 26
name = ERA_CHAR_NAME_6392
title = k_france
title_name = WEST_FRANCIA
character = {
dna = bcedirmbfcy
properties = aj00bc00000
religion="catholic"
culture="old_frankish"
government = feudal_government
dynasty=25061
}
}
}
Bookmarks can now be appended/partly overwritten by including parts of the same bookmark in another file.
Example:
Code:
bm_charlemagne = {
name = "BM_GARS"
desc = "BM_GARS_DESC"
date = 769.4.30
era = no
picture = GFX_some_other_picture
}
All properties above can be changed this way. (Selected character can however only be appended and not removed/overwritten - in that case you must overwrite the original file instead as before).