Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Unfortunately, passions aren't actually "ordered" in RimWorld's source code, so there's not really a programmatic way to specify what counts as "greater than" a given passion level (unless I hard-code it, which reduces compatibility with mods that add additional levels of passions).
That being the case, the way to achieve what you're trying to do is to use an "OR" filter (i.e. "at least passion" is equivalent to "passion OR burning passion"). For the example you gave, this would be "has passion for cooking OR has burning passion for cooking."
Let me know if you need more help.
- Lakuna
for example, If i want a "Doctor" filter that searches for a pawn that has a minor or major passion in both medical and in research. (solution in edit)
I tried a few things and nothing has worked thus far. I tried using:
and that didn't work, it just shuffled forever... I also tried having each of the 4 possible outcomes at once:
With just the passions set, It still rolled for over 1500+ pawns before i quit. so im not sure what im doing wrong, but obviously im doing something wrong lol.
I thought at first I was just asking too much (I had a list of not's originally as well, opting out of missing limbs, long term medical issues, and addiction) but i striped everything out except just the above lines and it still would roll a pawn. even though i was able to do so by hand in a few rolls
the PROPER way to do this, for anyone else down the road that has this issue, is to nest your options into a logic entirely. IE for the above example, the solution was:
I was going to delete the comment, but figured it may be of use to someone else so just amended it instead.