RimWorld

RimWorld

The Dead Man's Switch - MobileDragoon
CdotH 29. sep. kl. 10:48
Can Ghouls mount Dragoons?
Can't access game right now and for some reason can't search on this app.

Can ghouls use the dragoon suits? Have an idea for a Frank Harrigan style character and if I could force them into a dragoon suit I'd be very happy.
< >
Viser 1-1 af 1 kommentarer
ranger76th 18. okt. kl. 6:09 
You can try to modify the Exosuit Framework'file from Github: .source\Thing\Building_MaintenanceBay.cs

public virtual AcceptanceReport AcceptablePawnKind(Pawn pawn)
{
if (GetComp<CompPowerTrader>()?.PowerOn ?? false)
{
return "NoPower".Translate().CapitalizeFirst();
}
/*Obscuring this judgment: Is the driver human?
if (!pawn.RaceProps.Humanlike || pawn.IsQuestLodger() || !pawn.IsColonist && !pawn.IsSlaveOfColony && !pawn.IsPrisonerOfColony && (pawn.IsColonySubhumanPlayerControlled || pawn.IsGhoul))
{
return "PawnNotQualified".Translate(pawn.Name.ToString()).CapitalizeFirst();
}
*/
return true ;
}

But I must say: I tried to modify it this way, and although it allows the synthetic to enter the Exosuit, the Exosuit texture is transparent, and it feels like the synthetic is floating in the air.
< >
Viser 1-1 af 1 kommentarer
Per side: 1530 50