PavelNovotny wrote...
You don't need to necessarily change the gender - you can manipulate the following flags (there are a few more threads about this topic):
Approval_SetRomanceActive (APP_FOLLOWER_ALLISTAIR, TRUE)
Approval_SetLoveEligible(APP_FOLLOWER_ALLISTAIR), TRUE)
I can't get my toolset to compile scripts without freezing, so feel free to throw these commands into a mod and put it in override.
Actually, you would think so, but it turns out you need to do a bit more than that. Here's the complete version:
Approval_SetLoveEligible(APP_FOLLOWER_ALISTAIR); Approval_SetFriendlyEligible(APP_FOLLOWER_ALISTAIR); Approval_SetRomanceActive(APP_FOLLOWER_ALISTAIR, TRUE); Approval_ChangeApproval(APP_FOLLOWER_ALISTAIR, 0);
The ChangeApproval call is important because it updates all of the related stuff like the description in your character sheet, etc. This is what the module I posted above does and it seems to work well enough.