• 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.

Laffertytig

General
100 Badges
Mar 31, 2003
2.110
150
Visit site
  • Rome: Vae Victis
  • March of the Eagles
  • Europa Universalis III Complete
  • Naval War: Arctic Circle
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Semper Fi
  • Sengoku
  • Supreme Ruler 2020
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Magicka
  • War of the Roses
  • 500k Club
  • Cities: Skylines
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Pride of Nations
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Cities: Skylines - After Dark
  • Hearts of Iron 4: Arms Against Tyranny
  • Divine Wind
  • 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
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III Complete
  • Hearts of Iron II: Armageddon
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Heir to the Throne
  • Europa Universalis III Complete
just had "a generous noble event" where one character wants command of a legion which is commanded by his rival and is prepared to pay money for it.
however both the accept and reject options result in both characters losin loyalty which cant be right.

also, all of the government position replace events result in the populist faction gaining senators which also doesnt sound right.
 
Upvote 0
The event You mention is the "9903", which eventually reads: "No choice will please everyone".

So, one character (the choice is up to the player) will invevitably lose loyalty (among other things). The event works as intended.

As for the last event You remark on, it was discussed and reported previously.

Thanks.
 
silktrader said:
The event You mention is the "9903", which eventually reads: "No choice will please everyone".

So, one character (the choice is up to the player) will invevitably lose loyalty (among other things). The event works as intended.

I had a long post here highlighting the exact mistakes in the event code and the correct fixes for them but that was eaten by a 'the server is too busy' page so I'll keep it short.

There are two issues in the event. Firstly, from what I can tell, for the character the donor requests to replace, the event looks for the donor's *friends*, instead of rivals. This is why the original poster got a loyalty reduction for both characters with option A - the loyalty reduction to a random friend of the character being replaced got assigned to the character requesting the replacement, since he was his friend.

Secondly, option B assigns a loyalty loss to the character which you were requested to, but declined, to replace. This should be a loyalty increase instead. The event correctly assigns a loyalty loss to the character requesting the replacement when option B is chosen.
 
Let's call the donor, picked by event 9902, "Jari" - He has at least a friend, and at least a rival as well as a moderate wealth. Most importantly, Jari is on the streets and wishes a position - He offers to provide some money to get the spot.

Option (a) meets His requests:

A rival of His: is sacked, loses loyalty and His friends lose loyalty as well. Jari, on the other hand, smiles - He got the job - He slips ten gold in Your pocket.

Now, You are absolutely right, option (a) should read:

Code:
			limit = {
			 	is_rival = FROM
				in_command = yes
				is_ruler = no
			}

... rather than its present form ("is_rival" rather than "is_friend").

Option (b) refuses to accomodate Jari, whose loyalty decreases. Jari's high placed friend, the one sponsoring the job swap, is also disappointed: His loyalty suffers, along with that of Jari. You pocketed His ten gold pieces, without abiding to His demands: "I am sure He did out of the goodness of His heart."

Option (b) doesn't target the character You were requested to replace (the rival) - but Jari's friend. Option (b) thus looks correct to me.

Do we agree on the above.