I should reply here too since they dm'd me asking how to do this and others might be interested. I haven't tested it but something like this might work.
Code:
interaction !change_npc_likes(char:MC, char:T)
details "Cheat NPC", 0, 100, 20, "not_ai not_tired healthy"
init {
var $allow_it;
set $allow_it = &have_relation(MC,T);
}
allow $allow_it;
aiprob 0;
{
# Set the stats
&set_attr(T, "lewd", 100.0);
# set the likes
&set_like(T, "covered", -2);
&set_like(T, "commando", 2);
}
Though as I also mentioned in my dm if I wanted to adjust a specific person's stats or likes I would just use the console.
list p Name
to get the ID,
cheat set_like ID covered -2
to set the person's like,
cheat set_attr ID lewd 100
to set the person's stats. You can also use
list p
to see every character in the game and
dump p ID
to see everything about the character. There's also some good documentation in the game files for making your own mods and all the stories and events in the game are viewable in the tfl files.