Paradox Interactive Forums  


Go Back   Paradox Interactive Forums > Historical Games > Crusader Kings

Reply
 
Thread Tools
Old 24-06-2006, 01:16   #1
Kris Rhodes
Captain
EU3 Owner
 
Join Date: May 2003
Posts: 399
Is the "A Vassal is Declaring Independence" Event WAD?

This event gives me two choices: "He shall pay," and "Let him go in peace."

The first one gives me 50 prestige, loses me 25 piety.

The second one gives me 25 piety, but loses me thousands in prestige.

Is this WAD? The disparity doesn't seem quite right to me. Who would ever take that second option?

I am also annoyed by the fact that it doesn't tell me which vassal just declared independence...

-Kris
Kris Rhodes is offline   Reply With Quote
Old 24-06-2006, 07:14   #2
Veldmaarschalk
The Grand Stratego-ist
Moderator
 
Veldmaarschalk's Avatar
Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
Napoleonic MarshalDeus Vult!Penumbra -  Black PlagueFinder of the Lost EmpireEuropa Universalis: Rome
Europa Universalis: Rome (Collectors Edition)Hearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineSupreme Ruler 2020
EU3 CompleteRome: Vae VictisRome GoldEast India CompanyHearts of Iron III
Majesty 2Supreme Ruler 2020 GoldFor The GloryHeir to the Throne
 
Join Date: Apr 2003
Location: Zutphen, The Netherlands
Posts: 20,420
Quote:
Originally Posted by Kris Rhodes
This event gives me two choices: "He shall pay," and "Let him go in peace."

The first one gives me 50 prestige, loses me 25 piety.

The second one gives me 25 piety, but loses me thousands in prestige.

Is this WAD? The disparity doesn't seem quite right to me. Who would ever take that second option?

I am also annoyed by the fact that it doesn't tell me which vassal just declared independence...

-Kris
The event is broken, I already have reported it and it will be fixed in patch 1.06

This is the current event

Code:
character_event = {  #A vassal has declared independence.
	id = 6456

	picture = "event_claim"

	#triggered by 6452 action_b or 6453 action_b

	action_a = { #He shall pay!
		effect = { type = prestige value = 50 }
		effect = { type = piety value = -25 }
		effect = { type = random chance = 25
			effect = { type = add_trait value = vengeful }
		}
	}
	action_b = { #He may go in peace.
		effect = { type = prestige scale = -25 }
		effect = { type = piety value = 25 }
		effect = { type = random chance = 25
			effect = { type = add_trait value = forgiving }
		}
	}
}
The effect of action_b is a bug, it says, type = prestige scale = -25, this means that you lose 25 years of prestige gain (25 years * 12 months * monthly prestige), while the event should be something like this

Code:
character_event = {  #A vassal has declared independence.
	id = 6456

	picture = "event_law"

	#triggered by 6452 action_b or 6453 action_b

	action_a = { #He shall pay!
		effect = { type = prestige value = 50 }
		effect = { type = piety value = -25 }
		effect = { type = random chance = 25
			effect = { type = add_trait value = vengeful }
		}
	}
	action_b = { #He may go in peace.
		effect = { type = prestige value = -50 }
		effect = { type = piety value = 25 }
		effect = { type = random chance = 25
			effect = { type = add_trait value = forgiving }
		}
	}
}
You now lose 50 prestige with option B and gain 25 piety.

You can either wait for patch 1.06, which might take a rather long time, or fix it yourself. To do this go to

Crusader kings/db/events/realm_disruption_events.txt

search for event 6465 and modify it to the correct events.

Telling you which vassal got independent is just not possible, frustrating ? yes it is a bit, but won't be 'fixed'
__________________
If I use this color text, then I'm "speaking" as a moderator.

Crusader Kings Mod's: The Alternative Scenario Setup mod and Before the Conquest.
After Action Reports : Veldmaarschalk's AAR depository in the Ink Well
Member of the Association of Dutch Paradoxians and the 10,000+ Posters
Veldmaarschalk is offline   Reply With Quote
Old 29-06-2006, 12:35   #3
SirGrotius
Chancellor
Demi Moderator
 
SirGrotius's Avatar
Diplomacy PlayerEU3 Collectors Edition OwnerNapoleonic MarshalDeus Vult!Europa Universalis: Rome
Victoria: RevolutionsEuropa Universalis III: In NomineHearts of Iron IIIMajesty 2
 
Join Date: Oct 2002
Location: Philadelphia, PA
Posts: 3,620
I just referenced this in a previous thread and found the event, which I gladly adjusted as you suggested above. This is a very basic question, but I got an error when trying to save the adjustments which said something like "invalid file name, please check to ensure path is correct" and when I specified it said that the file is "read only" and has to be renamed. What do I need to do to correctly save (after modifying) this file?

Thanks
__________________
When I'm writing in this color I'm taking up the moderator's mantle.

Everybody's got plans... until they get hit. - Mike Tyson

I feel like sometimes that I was not meant for this society. - MT
SirGrotius is offline   Reply With Quote
Old 29-06-2006, 12:50   #4
Veldmaarschalk
The Grand Stratego-ist
Moderator
 
Veldmaarschalk's Avatar
Diplomacy PlayerEU3 OwnerEU3 Collectors Edition OwnerHoI AnthologyGalactic Assaulter
Napoleonic MarshalDeus Vult!Penumbra -  Black PlagueFinder of the Lost EmpireEuropa Universalis: Rome
Europa Universalis: Rome (Collectors Edition)Hearts of Iron 2: ArmageddonVictoria: RevolutionsEuropa Universalis III: In NomineSupreme Ruler 2020
EU3 CompleteRome: Vae VictisRome GoldEast India CompanyHearts of Iron III
Majesty 2Supreme Ruler 2020 GoldFor The GloryHeir to the Throne
 
Join Date: Apr 2003
Location: Zutphen, The Netherlands
Posts: 20,420
Quote:
Originally Posted by SirGrotius
I just referenced this in a previous thread and found the event, which I gladly adjusted as you suggested above. This is a very basic question, but I got an error when trying to save the adjustments which said something like "invalid file name, please check to ensure path is correct" and when I specified it said that the file is "read only" and has to be renamed. What do I need to do to correctly save (after modifying) this file?

Thanks
First select the folder that contains all the event files,

Crusader kings/db/events

Then right click on that folder and select 'properties' at the bottom of the pop-up you see that 'read only' is selected. De select it and you now can edit the files and save them accordingly

You can also just do this per event.txt file, it can be done the same way

right-click, properties, deselect read only.

But doing it for the entire folder is easier and less work
__________________
If I use this color text, then I'm "speaking" as a moderator.

Crusader Kings Mod's: The Alternative Scenario Setup mod and Before the Conquest.
After Action Reports : Veldmaarschalk's AAR depository in the Ink Well
Member of the Association of Dutch Paradoxians and the 10,000+ Posters
Veldmaarschalk is offline   Reply With Quote
Old 29-06-2006, 16:41   #5
SirGrotius
Chancellor
Demi Moderator
 
SirGrotius's Avatar
Diplomacy PlayerEU3 Collectors Edition OwnerNapoleonic MarshalDeus Vult!Europa Universalis: Rome
Victoria: RevolutionsEuropa Universalis III: In NomineHearts of Iron IIIMajesty 2
 
Join Date: Oct 2002
Location: Philadelphia, PA
Posts: 3,620
Excellent, thanks! It was a long night...
__________________
When I'm writing in this color I'm taking up the moderator's mantle.

Everybody's got plans... until they get hit. - Mike Tyson

I feel like sometimes that I was not meant for this society. - MT
SirGrotius is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


All times are GMT +1. The time now is 00:09.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
© Copyright 2001-2009 Paradox Interactive