Extra skillpoints for Wifey Companion?

Users who are viewing this thread

Klatu

Recruit
Anyone know a way I can give a companion some extra skillpoints? (not attribute points)

I took my wife in as companion but apparently she is suffering quite the skillpoint deficit, only starting with 2 or 3. I'd like to give her a few points to make her on-par with the average starting character/companion. She did come with a reasonable amount of attribute points relative to level.

I know there exists a cheat to level companions, but I have no interest in that as I like to level manually and it won't actually fix the core problem.
 
Find "courtship_event_bride_marry_groom" in module_scripts.py

After this

(store_script_param, ":bride", 1),
(store_script_param, ":groom", 2),
(store_script_param, ":elopement", 3),

Add the code below

(try_begin),
(eq, ":groom", "trp_player"),
(is_between, ":bride", kingdom_ladies_begin, kingdom_ladies_end),
(troop_raise_skill, ":bride", skl_riding, 1),
(troop_raise_skill, ":bride", skl_first_aid,1),
(troop_raise_skill, ":bride", skl_surgery,1),
(try_end),


Another way is simply to edit module_troops and give everyone better starting skills :grin:
 
Last edited:
Upvote 0
Back
Top Bottom