0 of 0

File information

Last updated

Original upload

Created by

BLANK

Uploaded by

ample12

Virus scan

Safe to use

About this mod

Introducing V4.0 – now every enemy drops configurable, logical loot based on the enemy type and the map, Policeman mimic drops pistols etc. Enjoy more rewarding rewards!

Requirements
Permissions and credits
Changelogs
Donations
If you enjoy this mod, consider supporting me: Ko-fi.

Structure:
.
└── KillRewardsMod/
    ├── scripts/
    ├── main.lua
    └── killConfig.lua


killConfig.lua has the new system for loot items called Groups. It's far easier to edit with examples and proper documentation on how to change the loot to your liking, and it has backup systems in case you make a mistake.

Preview of the new system:
Group:new(
    "Donny's Kit; Example",           -- Debug identifier
    {Enemy.MimicAssault},             -- Only drops from MimicAssault
    {Map.all},                        -- Drops in all maps
    3,                                -- 3/totalWeight = ??% selection chance

    -- ALL ITEMS BELOW WILL DROP WHEN GROUP IS SELECTED
    {
        -- Format: Item:new(quantity, item)
        Item:new(1, Items.Firearms.Primary.AK74.AK74N_S),       -- Always 1 Rifle
        Item:new(1, Items.Firearms.Primary.AK74.AK_74_Mag_Red), -- Always 1 Rifle Mag
        Item:new(1, Items.Ammo.AmmoBox.AmmoBox_545x39_FMJ),     -- Always 1 Rifle AmmoBox

        Item:new(1, Items.Firearms.Secondary.Gsh18.Gsh18),      -- Always 1 Pistol
        Item:new(2, Items.Firearms.Secondary.Gsh18.Mag_Gsh18),  -- Always 2 Pistol Mag
        Item:new(1, Items.Ammo.AmmoBox.AmmoBox_9x18_FMJ),       -- Always 1 Pistol AmmoBox
    }
),

You can install this mod with vortex!
1. Download UE4SS mod (nexus).
2. Download my mod.
3. Download ITR2-Lua mod.
4. You are done.

How to install manually?
There are two steps to it.

This mod uses UE4SS all credit goes to them!
Check them out here:

IF YOU USE THE UE4SS ON NEXUS THE MOD WON'T WORK DO THE BELOW.
How to install UE4SS
1. Download UE4SS link: UE4SS_v3.0.1-149-g10c8a67
Note: This version was good when I posted this mod, it could now be old. This
is not hosted by me it's a link to the GitHub page's file.
        There are some people that were experiencing issues and a different more newer version helped.
For those that want different version, take the normal version not the one with Dev:
Download page: UE4SS(Release)
Recommend download page:  UE4SS(experimental)

2. Unzip the downloaded files.
3. Put them into IntoTheRadius2\IntoTheRadius2\Binaries\Win64\

Note: it should look like this.

IntoTheRadius2/
└── IntoTheRadius2/
    └── Binaries/
        └── Win64/
            ├── ue4ss
            ├── dwmapi.dll
            └── etc...

4. You are now done installing UE4SS.

How to install the mod? (Also install ITR2-Lua the mod dependence on it.)
1. Download the mod.
2. Put the downloaded FOLDER into IntoTheRadius2\IntoTheRadius2\Binaries\Win64\ue4ss\Mods\
Note: it should look like this:

.
└── IntoTheRadius2/
    └── IntoTheRadius2/
        └── Binaries/
            └── Win64/
                ├── ue4ss/
                │   └── Mods/
                │       └── KillRewardsMod/
                │           ├── scrips
                │           └── etc...
                ├── dwapi.dl
                └── etc...

How to enable the mod?
This mod is already enabled!
Note: if you want to disable it delete enabled.txt

You are now done, enjoy!

If you want to uninstall the mod and UE4SS for some reason.
1. Delete Win64/ folder.
Note: Your saves are safe!
2. Steam verify files.

If you want to uninstall just the mod, delete the KillRewardsMod/ folder.