Hey all. I've reached the death of Babur in an enormously enjoyable Timurids->Transoxania->Mughals game in the latest EEP. I really like the new event layout - it gives much more of a feel of empires rising and getting torn apart, as oppose to the "oh look, some more rebels" approach.
At any rate, I've identified three bugs, although only two surfaced in my game.
1) In the key "Death of Ûlûgh Beg" event in 1449, the "Kings of Khorasan" event that should fire for Khorosan if you choose "b", does not. I'm really not sure why as everything SEEMS to check out in the event file. The same problem may exist for the "The Princes of Samarkand" event for Transoxania; I didn't go that route so I don't know.
2) (This bug did not show itself, but I noticed it) In the Transaxonia event file, the "Uzbeks take Samarkand" event is written incorrectly. It is set to trigger FOR the Uzbeks, if the uzbeks control Samarkand, and has them move their capitol to Tadjikistan and secede Samarkand to... themselves. This won't do much of anything except move the Uzbek capitol to the wrong place.
The proper approach would be to make the event trigger for U03 rather than UZB, and replace the trigger with
the event also doesn't have a description. I guess this was a late addition 
3) Possibly most significantly, the "Babur's Ambition" event for Delhi can trigger even when Transoxania exists. The problem is that the trigger uses a NOT AND condition that will usually come up true if "b" was chose in 1449. Since both events have the same date and offset, there's an even chance that Delhi will beat Tranoxania to the punch and found the Mughal empire. This will seem especially strange since "Babur's Ambition" will still trigger for Transoxania, and Babur will still be their monarch (just not their leader).
The proper approach would be to throw out the current trigger and replace it with:
anyway, everything else so far has run smoothly. I'm having loads of fun, thanks for all the hard work.
At any rate, I've identified three bugs, although only two surfaced in my game.
1) In the key "Death of Ûlûgh Beg" event in 1449, the "Kings of Khorasan" event that should fire for Khorosan if you choose "b", does not. I'm really not sure why as everything SEEMS to check out in the event file. The same problem may exist for the "The Princes of Samarkand" event for Transoxania; I didn't go that route so I don't know.
2) (This bug did not show itself, but I noticed it) In the Transaxonia event file, the "Uzbeks take Samarkand" event is written incorrectly. It is set to trigger FOR the Uzbeks, if the uzbeks control Samarkand, and has them move their capitol to Tadjikistan and secede Samarkand to... themselves. This won't do much of anything except move the Uzbek capitol to the wrong place.
The proper approach would be to make the event trigger for U03 rather than UZB, and replace the trigger with
Code:
[color=yellow]trigger = {
owned = { province = 1592 data = -1 } #Samarkand
control = { province = 1592 data = UZB } #Samarkand
OR = {
event = 325013
event = 325014
}
}[/color]
3) Possibly most significantly, the "Babur's Ambition" event for Delhi can trigger even when Transoxania exists. The problem is that the trigger uses a NOT AND condition that will usually come up true if "b" was chose in 1449. Since both events have the same date and offset, there's an even chance that Delhi will beat Tranoxania to the punch and found the Mughal empire. This will seem especially strange since "Babur's Ambition" will still trigger for Transoxania, and Babur will still be their monarch (just not their leader).
The proper approach would be to throw out the current trigger and replace it with:
Code:
[color=yellow]trigger = {
NOT = {
OR = { event = 3804
exists = U03 }
}
}[/color]