Corpse Disposal Limit Increased

Created On
N/A
Updated On
N/A
Total Views
3
Total Downloads
0
Maintainer
Noxequi

COMPATIBLE WITH PATCH 2.11

USE WITH FUTURE UPDATES AT YOUR OWN RISK. I stopped playing Cyberpunk so I won't keep these mods updated anymore. This means the RedMod variant will likely be incompatible with any future game updates, while the Redscript one might still work (as it only modifies part of the script). If anyone wants to take over, be my guest, you are free to do whatever you want with this mod, except sell it.

DESCRIPTION

Either increase the limit (RedMod only) or set it infinite when disposing corpses in containers.

Increasing the limit is made only for crates and dumpsters, but if you find another container you would like me to add, leave me a comment.
Currently increased limits (see Configuration section below on how to change them yourself):

  • crates from 2 to 3

  • small dumpsters from 3 to 5

  • large dumpsters from 4 to 6

Note: I cannot (currently) make Redscript version of increased limit, only the infinite one. The reason is that I cannot add a property I use to mark whether the container's limit was set or not.

CONFIGURATION

You can configure the limited version. Open the "mods\CorpseDisposalLimitIncreased\scripts\cyberpunk\devices\disposal\disposalDeviceController.script" file in a text editor, search for "SetNewLimit" function, and change the numbers to your liking:

private function SetNewLimit()
{
    var crateLimit : Int32 = 3;
    var smallDumpsterLimit : Int32 = 5;
    var largeDumpsterLimit : Int32 = 6;
...

INSTALLFor either version, just extract the files to your game folder.

The RedMod version requires RedMod (DLC) to be installed and active.

The Redscript version requires Redscript to be installed and any of its dependencies (either RED4ext or cybercmd, but see the Redscript page for more info).

UNINSTALLFor the RedMod version, remove the **GAME_FOLDER/mods/**CorpseDisposalLimit* folder.

For the Redscript version, remove the **r6/scripts/**CorpseDisposalLimitInfinite.reds file.

TECHNICAL DETAILS

Device names in code:

  • DUMPSTER
  • CRATE
  • BROKENCAR