Make any item or weapon reusable!
Plugin features:
- Make weapon's ammo infinite. (Grappling Hook, Flare Gun)
- Restrict players from getting "infinite" ammo.
- Make consumables infinite. (Parachute, Meat)
Console & RCON Commands:
NativeReusables.Reload - Reload plugin configuration.
JSON:
{
"Debug": false, # Enable to display CI, CA, and RA debug fields.
# CI - ConsumedItem - Displays when item that can be made reusable was used.
# CA - ConsumedAmmo - Displays when item consumes ammo and is a weapon.
# CA (ITEM) - ConsumedAmmo - Displays when item consumes ammo and is a weapon.
# RA - RemovedAmmo - Displays when ammo was removed or swapped as accessory.
# CD (ITEM) - ConsumedDurability - Displays when item consumes durability and is a weapon.
"ReusableWeapons": [ # CA - Use for weapons and everything that consumes ammo
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/WeapFlareGun.WeapFlareGun'", # Flare Gun
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/WeapCrossbow_GrapplingHook.WeapCrossbow_GrapplingHook'", # Grappling Hook Crossbow
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/WeapGasGrenade.WeapGasGrenade'", # Smoke Grenade
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/WeapBola.WeapBola'", # Bola
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItem_WeaponGun.PrimalItem_WeaponGun'" # Primitive Pistol (ITEM BP)
],
"ReusableTools": [ # CD - Use for Whips, Fertilizer or pretty much any item in the game that has durability including water jars.
"Blueprint'/Game/ScorchedEarth/WeaponWhip/PrimalItem_WeaponWhip.PrimalItem_WeaponWhip'" # Whip
],
"ReusableConsumables": [ # CI - Use for parachutes or something that is not a weapon but can be consumed.
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Items/Consumables/BaseBPs/PrimalItemConsumableBuff_Parachute.PrimalItemConsumableBuff_Parachute'" # Parachute
],
"RestrictedRemoveAmmo": [ # RA - Block removing specific ammo from weapons.
"Blueprint'/Game/PrimalEarth/CoreBlueprints/Weapons/PrimalItemAmmo_GrapplingHook.PrimalItemAmmo_GrapplingHook'" # Grappling Hook
]
}