File sent
Thanks
I narrowed down the problem, the export says she "Doesn't like to compromise with others". The wiki says this means she is between 25 and 39 cooperation. The wiki also says that if she's below 40 she can't gain pacifier levels.
If you look at her in game description to see if it says "Doesn't like to compromise with others"?
If it says that then the wiki is wrong, otherwise runesmith is exporting incorrect data.
Thank you for this tool. It's been really handy in the past.
I do have one request / suggestion and figure someone likely suggested it before. It would be nice if we could tell it we want x number of dwarves and what jobs we want each dwarf to do and have it tell us which set of dwarves fill the roles least worst.
This is a good idea! I've been thinking about it while working on the current version though I'm still unsure how to add it to the interface. Maybe I'll post a screenshot later to see if anyone has any ideas.
Also, given a list of professions and dwarfs, what is the best way to deal the dwarves?
Example:
Profs a b c
Urist1 4 0 7
Urist2 2 1 8
Urist3 4 3 5
Urist4 1 6 5
Urist5 8 7 6
Urist6 6 2 6
Lets say you want 2a 3b 1c. What happens to Urist5 as he is the best at professions a and b.
One possibility is having the profs choose the best dwarf and rotate profs.
a <- Urist5
b <- Urist4
c <- Urist2
a <- Urist6
b <- Urist3
c <- n/a - filled
a <- Urist1
b <- n/a - filled
c <- n/a - filled
However this means the profs that choose first get the better dwarves. A bit like choosing players in a field game.
Another possibility is sorting the dwarves by their highest aptitude then placing dwarves into profs by that order.
Profs a b c
Urist5 8 7 6
Urist2 2 1 8
Urist1 4 0 7
Urist4 1 6 5
Urist6 6 2 6
Urist3 4 3 5
Urist5 -> a
Urist2 -> c
Urist1 -> a
Urist4 -> b
Urist6 -> b
Urist3 -> b
Which is definitely sub optimal... Any ideas?