RimWorld

RimWorld

1,042 hodnocení
Set Owner for Prisoner Beds
7
4
   
Ocenit
Přidat do oblíbených
Oblíbeno
Odebrat z oblíbených
Mod, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6
Velikost souboru
Přidáno
Aktualizováno
5.641 MB
9. dub. 2020 v 0.34
16. čvn. v 4.20
Poznámky ke změnám (8) – zobrazit

Klikněte na „Odebírat“ pro stažení položky
Set Owner for Prisoner Beds

Popis
Adds a "Set owner" function for prisoner beds.

UPDATES
16-Jul-2021
- 1.3
Populární diskuze Zobrazit vše (2)
10
19. zář. 2020 v 12.39
is there a non steam download?
Waaaaaaaaat
2
3. pro. 2020 v 3.20
NOT COMPATIBLE WITH PRISON LABOR
Mr. Mauer (Mollari)
Počet komentářů: 127
Kyle 22. čvc. v 0.29 
@The Blind One

Lower mood = easier conversion
Higher mood = easier recruitment

The higher a pawns mood the more passive certainty they passively gain daily in their current ideo. The lower a pawns mood the lower passive certainty they gain.

Resistance never lowers or raises on it's own but it will go down faster if they're happy but they'll be recruited eventually either way so I find it unrewarding to bother making them happy.
zebez 16. čvc. v 2.46 
Great mod!

I didn't like that the gizmo button was diffrent than the other beds though, I changed it by replacing

[HarmonyPatch(typeof(Building_Bed), "GetGizmos")]
class PatchBuilding_BedGetGizmos
{
...
}

with

[HarmonyPatch(typeof(CompAssignableToPawn_Bed), "ShouldShowAssignmentGizmo")]
class PatchShouldShowAssignmentGizmo
{
static void Postfix(ref bool __result, CompAssignableToPawn __instance)
{
if (!__result) {
Building_Bed bed = __instance.parent as Building_Bed;
if (bed.Faction == Faction.OfPlayer && bed.ForPrisoners && !bed.Medical)
{
__result = true;
}
}
}
}

in PatchPrisonerBeds.cs
The Blind One 12. dub. v 9.46 
@Careful!

Consider getting wololoo

Prisoners with high moods will start to doubt their ideology making it easier to convert them without needing to move them around.
Careful! 11. dub. v 11.04 
Since conversion requires low mood and recruitment high mood, this mod is a must functionality.
Eric 19. pro. 2024 v 1.52 
i can finally create the horrific torture room ive always wanted to make!! thank you!!!
jupiter 11. pro. 2024 v 20.46 
its quite rare since prisoners are generally a bit pissy at their raiding buddies one way or another
Dagroth 8. lis. 2024 v 16.34 
They can? I guess that might have been added before my last game, I don't remember it happening before.
Summord 13. srp. 2024 v 8.04 
@Dagroth, prisoners can become lovers in vanilla rimworld. Also there's always a mood debuff for letting a prisoner escape. Please don't attribute base game additions to mods 🙏
Paprikahörnchen 28. čvn. 2024 v 5.25 
Hello!
This is exactly what I need! Does it work for 1.5?
Dagroth 30. kvě. 2024 v 16.33 
Also, is it safe to remove this mod from an ongoing game?
Once I'm done with the genetic research, prisoners will probably all be dumped into the same cell again, patched up and let go. Or immediately turned into mechanoid brains. Either way, separate cells and bed assignments won't be needed anymore, so I'm thinking to remove it then, if it really is responsible for the behavior I described in my previous comment.