Lucky Barrel

Lucky Barrel 1.0.0

Sign in to download
Place a storage barrel, and with a bit of luck, it might turn into a random loot barrel
This plugin allows players to place a vertical storage barrel that may transform into a random loot barrel. Upon placement, the storage barrel is destroyed and a loot barrel spawns in its position, which the player can then break to obtain loot.

Note: It doesn't apply to horizontal storage barrels.

Permissions

  • luckybarrel.use - Grants players the ability to place storage barrels that can potentially become loot barrels.

Configuration

JSON:
{
  "Version": "1.0.0",
  "Always Turn Into Loot Barrel": false,
  "Chance To Spawn Loot Barrel": 50,
  "Loot Barrel Prefabs": [
    "assets/content/structures/excavator/prefabs/diesel_collectable.prefab",
    "assets/bundled/prefabs/autospawn/resource/loot/loot-barrel-1.prefab",
    "assets/bundled/prefabs/autospawn/resource/loot/loot-barrel-2.prefab",
    "assets/bundled/prefabs/radtown/loot_barrel_1.prefab",
    "assets/bundled/prefabs/radtown/loot_barrel_2.prefab",
    "assets/bundled/prefabs/radtown/oil_barrel.prefab"
  ]
}
  • Always Turn Into Loot Barrel - If set to true, every placed vertical storage barrel will automatically transform into a loot barrel based on the chance defined in Chance To Spawn Loot Barrel. If set to false, players must press the secondary mouse button while placing the barrel to attempt the transformation.
  • Chance To Spawn Loot Barrel - Defines the probability (in percentage) that a vertical storage barrel will transform into a loot barrel when Always Turn Into Loot Barrel is true.
  • Loot Barrel Prefabs - A list of prefab paths for potential loot barrels. You can add new barrel prefabs here, including any new ones introduced by Facepunch.
Author
VisEntities
Downloads
29
First release
Last update

Ratings

0.00 star(s) 0 reviews

Also by VisEntities

  • Countdown
    Countdown
    Allows starting timed countdowns with custom messages
  • Failed Code Alert
    Failed Code Alert
    Warns players when someone tries to access their code lock with the wrong code
  • Workbench Equip Only
    Workbench Equip Only
    Requires players to be near workbenches to equip weapon mods
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