It might have been when i made Rusna fertile, i might of accidently made the entire fortress fertile which may have included the imprisioned blind sadist
No, it wasn't you. I tend to rely on eggs for my food in early years of a fortress and I always use "/fixster all" and it has never worked on vampires before.
I found a script somewhere to instantly make any creature pregnant. I used it to make sure the King and Queen would have an heir born in my fort, even though they have some children in Holykingdom/Balancehammer. I wondered if it would also work on Moldath.
I used DwarfTherapist to find the female dwarf with the best stats and used it on her. Thing is, she is already married... I used the military to reclaim Keyconjure after the last dwarf from the Staff of Kissing died and the team of 10 soldiers then occupied it.
Moldath was then made the Baron of Keyconjure, and made the move on one of those soldier's wives, an axe lord. It seemed like a Blind Sadist kind of thing to do.
Anyway, here is the script. As long as one of the targets is female, it will produce a child in fort mode. No idea if it works in adventure mode.
Courtesy of Nolimit.
pregUnits=pregUnits or {unit1=nil, unit2=nil}
local unit = dfhack.gui.getSelectedUnit(true)
if unit then
if pregUnits.unit1==nil then
pregUnits.unit1=unit
print("First unit selected")
else
pregUnits.unit2=unit
print("Second unit selected")
preg(pregUnits.unit1, pregUnits.unit2)
pregUnits.unit1=nil
pregUnits.unit2=nil
end
else
print("No unit")
end
function preg(u1, u2)
local mother
local father
local genes
if u1.sex==0 then
mother=u1
father=u2
elseif u2.sex==0 then
mother=u2
father=u1
else
print("At least one unit should be female")
return
end
genes=father.appearance.genes:new()
mother.pregnancy_timer=1
mother.pregnancy_caste=father.caste
mother.pregnancy_spouse=father.hist_figure_id
mother.pregnancy_genes=genes
print("Seed planted")
end