Harvestable Vehicles

Harvestable Vehicles 1.8.0

Sign in to download
Lets players gather materials from vehicles
This plugin allows players to break down rarely used vehicles like cars and hot air balloons for resources using specific tools, instead of them just sitting there and adding to your entity count.




Permissions

  • harvestablevehicles.use - Only players with this permission can harvest resources from vehicles.

Configuration

JSON:
{
  "Version": "1.8.0",
  "Prevent Harvesting Owned Vehicles": true,
  "Gathering Tools": [
    {
      "Item Short Name": "hammer.salvaged",
      "Skin Id": 0
    },
    {
      "Item Short Name": "jackhammer",
      "Skin Id": 0
    }
  ],
  "Harvestable Vehicles": [
    {
      "Vehicle Short Prefab Names": [
        "1module_cockpit",
        "1module_cockpit_armored",
        "1module_cockpit_with_engine",
        "1module_engine",
        "1module_flatbed",
        "1module_passengers_armored",
        "1module_rear_seats",
        "1module_storage",
        "1module_taxi",
        "2module_camper",
        "2module_flatbed",
        "2module_fuel_tank",
        "2module_passengers"
      ],
   "Resources": [
        {
          "Item Short Name": "metal.fragments",
          "Skin Id": 0,
          "Minimum Amount": 5,
          "Maximum Amount": 10,
          "Rarity": "Common"
        },
        {
          "Item Short Name": "metal.refined",
          "Skin Id": 0,
          "Minimum Amount": 1,
          "Maximum Amount": 5,
          "Rarity": "Common"
        }
      ],
      "Damage Increase Factor": 5.0
    }
  ],
  "Rarity Weights": {
    "Common": 60,
    "Uncommon": 25,
    "Rare": 10,
    "VeryRare": 5
  }
}
  • Prevent Harvesting Owned Vehicles - If enabled, vehicles with an assigned owner cannot be harvested. This primarily affects vehicles that are purchased or spawned using plugins, preventing players from gathering resources from them.
  • Gathering Tool Short Names - Lists the short names of tools that can be used for harvesting resources from vehicles. If a vehicle is hit with a tool not listed here, no resources will be gathered from it. (Using an item that is not categorized as a tool will not allow resource gathering.)
  • Harvestable Vehicles- Contains settings for vehicles that can be harvested.
    • Vehicle Short Prefab Names - Lists the short prefab names of the vehicles that can be harvested.
    • Resources- Defines the resources that can be gathered from the vehicle.
      • Item Short Name - The short name of the item.
      • Amount - The amount of the item that can be gathered per hit.
      • Rarity- The rarity of the resource, which determines its likelihood of being gathered. Available options:
        • Common
        • Uncommon
        • Rare
        • VeryRare
  • Damage Increase Factor - The multiplier by which the damage to the vehicle is increased during harvesting.
  • Rarity Weights - Defines the probability weights for each resource rarity. Higher weights increase the likelihood of gathering resources of that rarity.
Author
VisEntities
Downloads
89
First release
Last update

Ratings

0.00 star(s) 0 reviews

Also by VisEntities

  • NPC Rotator
    NPC Rotator
    Lets you rotate npcs to face a specific direction using a hammer
  • Countdown
    Countdown
    Allows starting timed countdowns with custom messages
  • Remote Siege Tower
    Remote Siege Tower
    Allows players to remotely control siege towers using RF transmitters

Latest updates

  1. 1.8.0

    Added Prevent Harvesting Owned Vehicles config option to block harvesting of vehicles that have...
  2. 1.7.0

    Added integration with True PVE to allow vehicles and hot air balloons to take damage when being...
  3. 1.6.1

    Fixed vehicles not receiving damage from gathering tools.
Back
Top
This plugin uses Oxide's permission system. Grant or revoke permissions using oxide.grant and oxide.revoke. You can assign them to individual players or groups using their Steam id or group name.
Chat commands start with a /, while console commands can be entered directly in the F1 console or server console. Use find <keyword> in console to search for available commands related to the plugin.
Settings are stored in the config file found under the config/ directory. You can edit this file manually, then reload the plugin to apply your changes.
Persistent data is saved in the data/ directory. This includes things like saved settings, usage stats, or player progress depending on the plugin. Deleting a data file will reset stored progress or customizations.
Language files are located in the lang/ folder. To translate messages, copy the en.json file into your target language folder (e.g. fr, de) and edit the values. Reload the plugin after changes to apply new messages.
This section lists public methods exposed by the plugin for use in other plugins. You can call these via the CallHook method. Make sure the plugin is loaded before calling its API to avoid null reference errors.
These are custom hooks that other plugins can listen for. Simply define a method with the same name and expected parameters in your plugin to handle the event. Hooks are triggered at key moments and are useful for extending or reacting to plugin behavior.
These hooks are injected into the game's code using Harmony. They let the plugin run code at key points in the game's internal logic. You can return values to block or modify behavior. Use with caution — these are powerful and can affect core mechanics.
Cart