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

Aardvark Bellay

Lord Wuffington of Grumpytown by the barks
21 Badges
Apr 5, 2001
15.449
2.865
  • Divine Wind
  • Stellaris Sign-up
  • Hearts of Iron IV Sign-up
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Holy Knight (pre-order)
  • 500k Club
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Victoria 2
  • Victoria: Revolutions
  • Heir to the Throne
  • Crusader Kings II
  • Europa Universalis III
  • Deus Vult
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
Not updated attributes code.

The event gives several options.
This is the fith potential option in the file.
A character gets randomly created.

The "learning = 8" doesn't get assigned to the newly created character, as it's missing the new "attributes = { ...}" part.
When i executed the event option, the character got three attribute points in learning.

feudal_life_events.txt

event id = 4150

line 3397 specifically:

Code:
option = {
     name = EVTOPTE4150
     create_character = {
       learning = 8
       random_traits = yes
       dynasty = random
       age = 65
       female = no
       has_nickname = nick_the_clueless
     }
   }

The line should be something like:
Code:
attributes = {
               learning = 8
             }
..and is usually past the line: female = no and not before random_traits.

Just stumbled over it by accident.
Cheers



...or is this on purpose for whatever reason ??
 
Last edited:
  • 1
Reactions:
Upvote 0