边缘世界 RimWorld

边缘世界 RimWorld

评价数不足
No Prison Breaks B18
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
467.366 KB
2018 年 8 月 8 日 下午 2:03
1 项改动说明 ( 查看 )

订阅以下载
No Prison Breaks B18

描述
Just disables prison breaks.
18 条留言
Thom Blair III 2018 年 8 月 17 日 下午 6:41 
Awesome! Thanks! 👍
Greep  [作者] 2018 年 8 月 17 日 下午 5:54 
Added in a reply to the thread :D
Greep  [作者] 2018 年 8 月 17 日 下午 5:50 
Yeah that is only for 0.19. however I'll just add the b18 version as well there, as it's literally just zipping a file and uploading it xD Will probably be added by the time you see this comment
Thom Blair III 2018 年 8 月 17 日 下午 3:21 
Actually, that looks like it's not for the current version. Will it work or do I need the B18 one? I'm very new to the game.
Thom Blair III 2018 年 8 月 17 日 下午 3:02 
Nevermind, I found it here: https://ludeon.com/forums/index.php?topic=43154.msg425154#msg425154
Thanks! Can't wait to try it! :)
Thom Blair III 2018 年 8 月 17 日 下午 2:53 
This is exactly what I've been looking for! However, Steam for Macs doesn't work right now after the new Steam Client update. So, I can't add the mod via Steam. Is there a direct download link for this mod so I can manually install it? That would be so awesome.
Syrup 2018 年 8 月 15 日 下午 6:14 
Heat waves and cold snaps can at least be countered (if you have heaters/coolers or passive coolers and whatever). There just isn't any defense in-game for solare flares atm and such events. Toxic fallout is annoying but not as bad as solar flares. If you rely on turrets for defense, coolers for food, and power to just keep the colony running, solar flares can pair up with other events like raids and end a colony near instantly.
Spectreblitz 2018 年 8 月 15 日 上午 11:15 
actually you guys make a good point :)

I mean I hate heat wave and cold snap events tbh
Syrup 2018 年 8 月 14 日 下午 7:36 
@Spectre Certain events in the game are more annoying than others. I would like prison breaks honestly if they didn't try to escape a five-star hotel turned holding cell. "Yeah I mean I just had some lavish food and got to eat with a table. Better run away. Other events like solar flares are annoying because you just can't do ♥♥♥♥ about them. How do you fight a solar flare? Some things would be better rebalanced but having them removed to give Tynan time to fix is pretty convenient.
Greep  [作者] 2018 年 8 月 14 日 下午 3:37 
Actually, despite what any game tips say, there doesn't seem to be any factor based on mood, just time spent, amount of prison breaks, and how fast they can walk:

if (room != null && room.isPrisonCell)
{
float num = 45f;
num /= Mathf.Clamp(pawn.health.capacities.GetLevel(PawnCapacityDefOf.Moving), 0.01f, 1f);
if (pawn.guest.everParticipatedInPrisonBreak)
{
float x = (float)(Find.TickManager.TicksGame - pawn.guest.lastPrisonBreakTicks) / 60000f;
num *= PrisonBreakMTBFactorForDaysSincePrisonBreak.Evaluate(x);
}
return num;
}

Opaque factors on things like this are probably some of the reasons why people download mods. For instance, what causes infestations? Like 20 different possible causes that you won't find out without digging in the source code.