Project Zomboid: Tip (Remove corpses. Make the modification yourself)

Home » Gaming Tactics » Project Zomboid: Tip (Remove corpses. Make the modification yourself)
August 14, 2020
2 minutes
91

By Jonny Gamer

Project Zomboid: Tip (Remove corpses. Make the modification yourself)

The sandbag is a container while it is empty. If you put something in it and collect sand, gravel or just earth, then the contents will disappear and after pouring out the sand / earth the bag will be empty again.

Problem: The bag has a capacity of 15, while the corpses weigh 40.

Decision:

1. Make the bag more spacious
2. Make corpses easier

The bag is described in the file “newitems.txt”

    item EmptySandbag
    {
        Weight = 0.1,
        Type = Container,
        WeightReduction = 10,
        Capacity = 15,
        DisplayName = Empty Sand bag,
        Icon = SandbagEmpty,
    }

Here is the number 15 this is the capacity of the bag, you need to put it taking into account your skills for changing the capacity of the bags. We bet 100500 and don’t bother. You can also add the line:

        CanBeEquipped = Back,

to hang the bag on your back. You need to add it between curly braces, and each line must end with a comma.
If there is a desire, then the compression to 100 can be raised, otherwise you will not take more than one corpse. Although, it only works if the bag is equipped. Well, or change the weight of the bag “0.1” to minus, for example “-1000.1”. The decimal point in numbers is replaced by a dot.

Okay,
Second way

There are lines in the same file

    item CorpseMale
    {
        Weight = 40.0,
        Type = Normal,
        DisplayName = Corpse,
        Icon = media / ui / Container_DeadPerson_MaleZombie.png,
        RequiresEquippedBothHands = true
    }

    item CorpseFemale
    {
        Weight = 40.0,
        Type = Normal,
        DisplayName = Corpse,
        Icon = media / ui / Container_DeadPerson_FemaleZombie.png,
        RequiresEquippedBothHands = true
    }

These are two blocks for a male and a female corpse. Change both 40 to 0. In principle, you can put a minus value.

After making changes, save the file and restart the game. Pick up the corpse and move it with the mouse from your hands to a container, into a handzak, or into a bag thrown on the floor. Now you can pick up earth with a shovel in this bag and all the corpses in it will disappear.

Congratulations, you are now a mod / mod / mod maker.
Good luck.

    How do you rate Project Zomboid: Tip (Remove corpses. Make the modification yourself) ?

    Your email address will not be published. Required fields are marked *