• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

doktarr

Wet Blanket
16 Badges
Aug 3, 2003
2.075
45
Visit site
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Way of Life
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Conclave
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Holy Fury
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
Code:
[color=yellow]trigger = { 
		owned = { province = 1592 data = -1 } #Samarkand
		control = { province = 1592 data = UZB } #Samarkand
		OR = {
 			event = 325013
			event = 325014
		}
	}[/color]
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:
Code:
[color=yellow]trigger = {
		NOT = {
			OR = { event = 3804
				exists = U03 }
		}
	}[/color]
anyway, everything else so far has run smoothly. I'm having loads of fun, thanks for all the hard work.
 
Thanks for pointing those out...:eek:o

I know that the second event was indeed a late addition from me and is actually part of a larger event change that doesn't currently exist.

That Delhi event issue is the result of not making sure events were compatible but your fix accomplishes that. :cool: