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

hquijanog

Second Lieutenant
16 Badges
Feb 25, 2007
161
43
  • Crusader Kings II
  • Europa Universalis III
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
  • Europa Universalis IV: Common Sense
  • Surviving Mars
  • Surviving Mars: Digital Deluxe Edition
  • Surviving Mars: First Colony Edition
  • Surviving Mars: First Colony Edition
  • Crusader Kings III
  • Crusader Kings III: Royal Edition

Information​

I have verifed my game files (Steam only)​

Yes

I have disabled all mods​

Yes

I am running the latest game update​

Yes

Required​

Summary​

Characters start using only Armor

Description​

I have a ruler that I use to lead on all my wars and raids. Meanwhile the ruler is leading an army, he wears his armor and wears noble clothes once its back home or in an activity like a wedding. This has been the way it worked since the very beginning.
Now with latest version, after several years of playing, like 20 or 30, going events, tournaments etc. my ruler now use armor all the time, even while staying at home, going to hunting or assisting grand weddings.
I have not identified yet which event caused this, it just happened after returning from a raid and disband the army.
The workaround is going to the barbershop and change the outfit, but the default outfit remains the armor after other 20 or 30 years of playing.
I'm adding a save and a picture where my ruler (not knight nor marshal of anyone) is wearing the armor waiting for witch activity to start.
The workaround is to use the barbershop to choose a different clothing, but its not ideal as now leading army stays in that cloth.

Steps to reproduce​

see description above

Game Version​

1.10.1

Platform​

Windows

Additional Information​

Affected Feature​

  • Events
  • Gameplay

Save Game​

View attachment Battle-1.ck3

Other Attachments​

Always in Armor.png

 
Upvote 0
I found the reason why my ruler is wearing armor. It is because it has the "single_combat_duel_armor" flag.
removing the flag, fix the problem.

I couldn't not find yet which event chain set this flag on and don't remove the flag after the event chain finished. But it may give you a clue of what to look.
 
Did you do a duel around the time you elevated the Isle of Mann to a Kingdom and became feudal? Maybe you were in a tournament?
single_combat_clean_shirtlessness_effect only clears single_combat_stripped_to_waist if for some reason both flags are set.

I think they should change the if-else-if to two if statements.
 
I found the reason why my ruler is wearing armor. It is because it has the "single_combat_duel_armor" flag.
removing the flag, fix the problem.

I couldn't not find yet which event chain set this flag on and don't remove the flag after the event chain finished. But it may give you a clue of what to look.
can you please share it over here. I also needed a trick or hack you had come through and fix it.
 
Did you do a duel around the time you elevated the Isle of Mann to a Kingdom and became feudal? Maybe you were in a tournament?
single_combat_clean_shirtlessness_effect only clears single_combat_stripped_to_waist if for some reason both flags are set.

I think they should change the if-else-if to two if statements.
Yes, I remember got invited to a tournament, but once my character arrived and clicked that I wanted to participated, I discovered it was actually a recital tournament. Something I didn't notice when received the tournament notification or I wouldn't go as it was just a waste of time for my ruler.
So after selected want to participate then I got the notification that I don't qualify to compete a few days after. So I was just an expectator after that.

I think that may be the culprit event, when clicked want to participate I may got the armor flag on, and since my ruler didn't participate, it didn't got the removal flag after the event. Now, I'm not 100% as I was not able to reproduce again since I was not yet invited to another recital tournament since then.

Also when traveling to university or to this tournament or during a tour thru my realm, I got challenges from knights on the road and then reclute them after winning. But I don't think this quick duel events are the problem as I had several in the pasts without having this issue.
 
  • 1Like
Reactions:
can you please share it over here. I also needed a trick or hack you had come through and fix it.
I created the following custom decision, it only works for human player rulers, but it could be adjusted if you need to fix other characters like your sons:

hq_fix_armor_decision = {
picture = "gfx/interface/illustrations/decisions/decision_realm.dds"
ai_check_interval = 120
desc = hq_fix_armor_decision_desc
selection_tooltip = hq_fix_armor_decision_tooltip

is_shown = {
is_ai = no
is_landed = yes
OR = {
has_character_flag = wear_armor
has_character_flag = single_combat_duel_armor
has_character_flag = forced_knight_armor
}
}

effect = {
if = {
limit = {
has_character_flag = wear_armor
}
remove_character_flag = wear_armor
}
if = {
limit = {
has_character_flag = single_combat_duel_armor
}
remove_character_flag = single_combat_duel_armor
}
if = {
limit = {
has_character_flag = forced_knight_armor
}
remove_character_flag = forced_knight_armor
}
}

ai_potential = {
always = no
}

ai_will_do = {
base = 0
}
}
 
  • 1
Reactions: