Re: Stunning incompetence
It may be that the Puno-Iberian Trait has the hidden effect that he wont do very well in a type 1 government city. It's the same with KH where Athenian generals become stunningly imcopetent while undergoing the Agoge because Sparte has a type 1 government. Don't worry dude, once you move him to a city that has a suitable government for him, he'll lose the trait. I hope:clown:
Re: Stunning incompetence
Thanks, I hope you're right. I was thinking it might be something of that sort, but hadn't got to test it yet.
Re: Stunning incompetence
I've had the same problem. Personally, I think "Stunning Incompetence" is a bit harsh, but that can always be edited easily.
And Basileus Seleukeia is correct, at least from my expierience.
Re: Stunning incompetence
@ The General:
This happened to me too, when playing either Epirote or Pontic games. A "suitable husband" with at least above average traits, and peng! after he's in a town (say Athens), he gets this extremely nasty trait.
Strangely, those "S.H." with average or under average traits do not get it. Must be some relation between "above average traits" & getting this nasty trait.
Yours,
T.
Re: Stunning incompetence
Maybe this explains it (though I've not understood it completely):
Code:
Trigger Governor_No_Longer_in_Favorite_Type1_Settlement
WhenToTest CharacterTurnEnd
Condition IsGeneral
and EndedInSettlement
and Trait Type1Settlement < 1
and Trait LikesType1 > 0
and Trait SettlementGoodMatch > 0
Affects SettlementBadMatch 1 Chance 100
Affects BadAdministrator 8 Chance 100
Affects PeopleUnhappy 1 Chance 100
;------------------------------------------
Trigger Governor_BadMatch_with_Type1_Settlement
WhenToTest CharacterTurnEnd
Condition IsGeneral
and CharacterIsLocal
and EndedInSettlement
and Trait Type1Settlement > 0
and Trait HatesType1 > 0
and Trait SettlementBadMatch < 1
Affects SettlementBadMatch 1 Chance 100
Affects BadAdministrator 8 Chance 100
Affects PeopleUnhappy 1 Chance 100
I guess that
- the factional (sub-) ethnicity (e.g. Mollosian, Thraikos, Persikos, etc.) and that
- the gouverment type (in this case, a gov1)
play a major role in getting this trait ("BadAdministrator 2" = Stunningly Incompetent).
T.
EDIT: what confuses me is "BadAdministrator 8", 'cause IIRC there are just 4 levels (level one being "Jobsworth").
Re: Stunning incompetence
Quote:
Originally Posted by Treverer
@ The General:
This happened to me too, when playing either Epirote or Pontic games. A "suitable husband" with at least above average traits, and peng! after he's in a town (say Athens), he gets this extremely nasty trait.
Strangely, those "S.H." with average or under average traits do not get it. Must be some relation between "above average traits" & getting this nasty trait.
Yours,
T.
The more you expect out of someone, the farther htey can fall. I bet no one would be complaining about this if some Dull/Langorous/UnCharasmatic Hypochondriac with a Fear of Blood got it. :beam:
Re: Stunning incompetence
Quote:
Originally Posted by antisocialmunky
The more you expect out of someone, the farther htey can fall. I bet no one would be complaining about this if some Dull/Langorous/UnCharasmatic Hypochondriac with a Fear of Blood got it. :beam:
sometimes is the opposite...for example, with Baktria I have a Dull/Charismatic/Languorous Persikos FM that is Hale And Hearty and one of my more succesfull and influential generals :eyebrows:
Re: Stunning incompetence
I explained this in the other thread on the issue.
Re: Stunning incompetence
Quote:
Originally Posted by bovi
Thx, Bovi. So I was right with my analysis. Edit: I was unaware of your post and simply searched the char_trait.txt folder. ~;)
Yours,
Treverer
P.S. What does "BadAdministrator8" mean?? Aren't there only 4 or 5 levels of that trait?
Re: Stunning incompetence
Good question! The RTW traits mechanics is easily misunderstood. I've marked some lines in the following code to illustrate the point.
Code:
Trait BadAdministrator
Characters family
NoGoingBackLevel 6
AntiTraits GoodAdministrator
Level Jobsworth
Description Jobsworth_desc
EffectsDescription Jobsworth_effects_desc
Threshold 2
Effect Management -1
Effect Unrest 1
Level Administratively_Inept
Description Administratively_Inept_desc
EffectsDescription Administratively_Inept_effects_desc
Threshold 4
Effect Management -2
Effect Unrest 2
Level Stunningly_Incompetent
Description Stunningly_Incompetent_desc
EffectsDescription Stunningly_Incompetent_effects_desc
Threshold 8
Effect Management -3
Effect Unrest 3
Effect Influence -1
Level Completely_Incompetent
Description Completely_Incompetent_desc
EffectsDescription Completely_Incompetent_effects_desc
Threshold 16
Effect Management -4
Effect Unrest 4
Effect Influence -1
Level Legendarily_Incompetent
Description Legendarily_Incompetent_desc
EffectsDescription Legendarily_Incompetent_effects_desc
Threshold 32
Effect Management -5
Effect Unrest 5
Effect Influence -2
You'll notice that there are indeed only 5 levels of the trait, and a general with Completely_Incompetent would return true on the condition Trait BadAdministrator = 4. However, the thresholds of the levels are a lot higher. To have level 4, he needs to have between 16 and 31 points in the trait. Affects statements add points, not levels. The give_trait console command however works in levels and not points.
When you add 8 points to one who has nothing on the trait, he'll go straight to the third level, Stunningly_Incompetent.
Re: Stunning incompetence
Thx again Bovi! Where do I get further information about how the "traitpoints" work? No need to hurry with an answer though, you might PM me when you have time. EDIT: Not needed anymore, I think I've understood now how it works.
Yours,
Treverer
Re: Stunning incompetence
The scriptorium anyway is always the first stop. From there you can go to modding questions, if you haven't found a guide.