Hello, so the PossessSex plugin was originally included in EasyMate and I've kept it around because well, it's great and I don't know of an alternative. If there is one please let me know, because this question won't matter. I noticed penis posession didn't work sometimes, seemingly randomly. I opened up the script and with my limited coding knowledge found a line that looks for the word "male" for things to possess (so something named futa won't work). Line 733 if you have the plugin, not sure if I can reupload, afaik it's only in the giant easymate download. Appreciate any help!
Code:
foreach (string atomUID in SuperController.singleton.GetAtomUIDs())
{
Atom atom = SuperController.singleton.GetAtomByUid(atomUID);
if (atom.type == "Person" && atomUID != containingAtom.name && atom.GetComponentInChildren<DAZCharacter>().name.StartsWith("male")) { atomChoices.Add(atomUID); }
}
if (atomChoices.Count == 0) { atomChoices.Add("None"); }