Paladin's Wishlist
-
Car Tuning
permission for use - cartuning.use
Open UI - /tuning (you need to look right at the car)
FEATURES:
Increase street angel Add sign Add smoke Increase slot for storagecontainer module Underbody light (white | red | green)
P.s - (My Discord - tofurahie#4144)
Config:
{ "Tuning can only be used when the car is on the Modular Car Lift ": true, "How much increase steer angle": 10.0, "Rotate sign": { "x": 0.0, "y": 0.0, "z": 0.0 }, "[COST] |Increase steer angle| in SCRAP": 12, "[COST] |Add sign| in SCRAP": 12, "[COST] |Add smoke| in SCRAP": 12, "[COST] |Underbody lighting| in SCRAP": 12, "[COST] |Increase slots in ModuleStorage": 14, "Dictionary of position underlight": { "TwoModules": [ { "x": 0.0, "y": 0.42, "z": 0.5 }, { "x": 0.0, "y": 0.42, "z": -0.5 } ], "ThreeModules": [ { "x": 0.0, "y": 0.42, "z": 0.5 }, { "x": 0.0, "y": 0.42, "z": -0.5 }, { "x": 0.0, "y": 0.42, "z": -1.0 } ], "FourModules": [ { "x": 0.0, "y": 0.42, "z": 1.0 }, { "x": 0.0, "y": 0.42, "z": 0.5 }, { "x": 0.0, "y": 0.42, "z": -0.5 }, { "x": 0.0, "y": 0.42, "z": -1.0 } ] }, "Dictionart of position smoke machine": { "TwoModules": { "x": 0.0, "y": 0.6, "z": -1.4 }, "ThreeModules": { "x": 0.0, "y": 0.6, "z": -2.4 }, "FourModules": { "x": 0.0, "y": 0.6, "z": -3.0 } }, "Rotate for smoke machine": { "x": 180.0, "y": 0.0, "z": 0.0 }, "Dictionart of position lighting": { "TwoModules": { "x": 0.55, "y": 0.52, "z": -0.4 }, "ThreeModules": { "x": 0.55, "y": 0.52, "z": -1.6 }, "FourModules": { "x": 0.55, "y": 0.52, "z": -2.4 } }, "Dictionart of count lighting": { "TwoModules": 3, "ThreeModules": 6, "FourModules": 8 }, "Rotate for lighting": { "x": 90.0, "y": 0.0, "z": 0.0 }, "Dictionary of position small sign": { "TwoModules": { "x": 0.0, "y": 0.7, "z": 1.65 }, "ThreeModules": { "x": 0.0, "y": 0.7, "z": 2.2 }, "FourModules": { "x": 0.0, "y": 0.7, "z": 3.3 } }, } -
Loot Table & Stacksize GUI
By The_Kiiiing in Plugins
Say goodbye to configuration and data files. This plugin lets yo edit the loot of (almost) every lootable object directly over a custom UI. It also includes a graphical stack size editor thus making it ideal for anyone who is not familiar with editing config files.
Do not use in combination with any other stack size controller or loot plugin.
Russian lang file (файл русского языка)
You can now enjoy the interface of Loottable in Russian. Just download the file and place it in the /oxide/lang/ru/ folder
Loottable.json
DISCLAIMER: Translations are provided by the community and I can not guarantee for their accuracy
NEW with version 2.2.7:
You can now add new items to all your configurations with the click of a button on the settings page. This only works for items that have been newly added with the last rust update. Amount and drop chance will be set to the vanilla values. This can also be done via command loottable add_new_items
NEW with version 2.1.16:
Improved item search
You can now search for hidden items by adding h: to the start of your search (e.g. the search h:cable will show the cable tunnel item which is hidden by default). This works in both item editor and stack size controller. Full support for CustomItemDefinitions
NEW with version 2.1.7: Direct Loot Refresh
Players with the permission loottable.test can use a button to directly refresh the loot in the crate they are currently looting.
Features:
User friendly GUI - no need to edit config files Loot configuration for every prefab in the game Stack size controller supports individual stack sizes for every prefab Support for custom items Support for third party plugins Fully backwards compatible with version 1.x.x Default config included for every prefab Configuration for Smelting Speed, Recycler Speed and Efficiency Supply Drop configuration
Supported prefabs:
Crates, Barrels NPCs Trees, Ores, Animal corpses Excavator, Quarries Christmas Presents, Eggs, Loot Bags Collectables like Hemp, Corn, etc.
Additional Configuration:
Smelting Speed Supply Drop Recycler Speed / Efficiency
Commands:
loottable - Open the Loottable UI loottable reload - Manually refresh loot loottable remove_dlc_items - Remove all DLC items from your loot configs. This action can not be undone loottable add_new_items - Add all new items from this months rust update to your configurations. This action can not be undone
Permission:
loottable.edit - Required to use the Loottable UI
Required Dependencies (Oxide only):
Image Library: https://umod.org/plugins/image-library
Translations:
This plugin fully supports translation. Out of the box only english is included. For item names to be translated, the plugin https://umod.org/plugins/rust-translation-api is required. English translations are located in /oxide/lang/en/Loottable.json
For Developers:
Loot Api:
Developers can use the Loot Api to register loot profiles for custom NPCs or other plugin related loot.
It is highly recommended to use the provided wrapper to access the API. Documentation is also included:
https://gist.github.com/TheKiiiing/53a37e8bbb48d8a24c8e8b21b9da37ac
Loot Api Example:
void OnLoottableInit() { LoottableApi.ClearPresets(); LoottableApi.CreatePresetCategory(this, "Crates"); LoottableApi.CreatePreset(this, "c_locked", "Locked Crate", "crate_hackable"); LoottableApi.CreatePreset(this, "c_elite", "Elite Crate", "crate_elite"); LoottableApi.CreatePreset(this, "c_military", "Military Crate", "crate_military"); LoottableApi.CreatePreset(this, "c_normal", "Normal Crate", "crate_normal"); LoottableApi.CreatePresetCategory(this, "NPCs"); LoottableApi.CreatePreset(this, true, "npc_cargo", "Cargo Ship NPC", "npc_militunnel"); LoottableApi.CreatePreset(this, true, "npc_control", "Control Center NPC", "npc_militunnel"); } void SpawnNpc() { // Spawn NPC here ScientistNPC npc; // Assign a loot preset to the NPC LoottableApi.AssignPreset(this, scientist, "npc_control"); } void SpawnCrate() { // Spawn crate here LootContainer crate; // Assign a preset to the crate if (LoottableApi.AssignPreset(this, container, "c_locked")) { // The container has been filled with loot return; } else { // The container is not handled by Loottable // Default loot logic goes here } } The resulting configuration page would look like this:
Custom Items API:
Developers can use the Custom Items Api to add a custom item to the Loottable item list. If an item is marked as persistent it will remain in the custom item list until it is removed by ClearCustomItems. All non-persistent items will be removed after the plugin that registered them has been unloaded.
(void) AddCustomItem(Plugin plugin, int itemId, ulong skinId) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, bool persistent) //(v1.0.27 or higher) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, string customName) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, string customName, bool persistent) //(v1.0.27 or higher) (void) ClearCustomItems(Plugin plugin) //(v1.0.27 or higher)
Hooks:
(void) OnLoottableInit() This hook is called when Loottable is ready to receive API calls. This happens either on server boot or when the plugin is loaded. Use this hook to register custom items and loot presets.
(object) OnContainerPopulate(LootContainer container) This hook is called every time a loot container is about to be populated with loot. Returning a non-null value prevents the plugin from spawning loot into that crate.
(object) OnCorpsePopulate(LootableCorpse corpse) This hook is called every time an npc corpse is about to be populated with loot. Returning a non-null value prevents the plugin from spawning loot into that corpse.
(object) OnCustomAirdrop(SupplySignal signal) This hook is called every time a custom supply drop is about to be delivered. Returning a non-null value will cancel the custom supply drop.
Outdated documentation for Version 1:
New with version 1.0.27:
Custom Items can now be created and edited directly in the GUI. They can be created from any existing item and modified in the Item Select menu
You can now create and load backups of your configuration. Commands (F1 or Server Console):
loottable.backup load <name> - Load backup with the given name from the backups folder (will wipe your current configuration) loottable.backup create <name> - Create backup of everything with the given name Backups will be created in the data/Loottable/backups folder. To load a backup, the backup file needs to be present in that folder. When creating backups in the in-game console, the permission loottable.debug is required.
IMPORTANT: DO NOT LOAD BACKUPS FORM SOURCES YOU DO NOT TRUST, they might cause harm to your server
New with version 1.0.16:
Custom Items:
Now you can add custom items used by other plugins directly to your loot table. Other plugins can can register these items using the api (documentation below).
Screenshots:
Overview of crates and their current loot table
Stacksize Editor
Commands:
loottable - Open the editor loottable refresh - Manually refresh crate loot loottable flags - List available flags (explained below) loottable flags <name> <1|0> - Enable / disable a certain flag loottable reload_vanilla_profiles - Manually re-download vanilla loot profiles (only for debuging)
Permission:
loottable.edit - Required to use the editor
Flags:
There are flags to disable some limits in the editor. Only enable these flags if you really need to as they might cause unexpected behavior of the editor. There are currently 3 flags available:
Debug If enabled, the Debug flag provides more detailed information about errors and other actions in the editor. Don't enable this flag unless you want your console full of spam.
UnlockGatherMultiplier allows you to use gahter multipliers less than one and higher than 1000. Note that multipliers less than one might lead to unexpected results in some cases.
DisableItemLimit Probably the safest flag to use is DisableItemLimit as it simply lets you set stack sizes and every other item amount in the editor as high as 2,147,483,647 which is the biggest possible value of a 32-bit integer.
UnlockFurnaceMultiplier lets you use any value as the furnace speed multiplier. Don't enable this flag unless you know what you are doing, since the default value range from 0.1 to 100 should cover most use cases and larger values might impact server performance.
UnlockItemMultiplier unlocks the multiplier when multiplying a loot table.
DisableStackingHooks will disable all stacking related hooks. Enable if you encounter problems when stacking items.
RefreshLootOnExit controls if all crates get refreshed after closing the editor or when reloading the plugin. Enable this only for testing, there might be an increase in entities.
Refer to the Commands section for more information about enableing flags.
Vanilla Configurations:
Since version 1.0.7 there are vanilla loot profiles available for most crates and NPCs. These profiles can be loaded using the "Load default loot table" button at the top center of the editor.
DISCLAIMER:
The vanilla loot profiles in the editor might not exactly match the vanilla loot distribution of the game as it uses a completely different loot distribution system than Rust. These profiles rather serve as a reference point for custom loot profiles.
Important for Carbon users:
In order for this plugin to work with carbon, Harmony references need to be enabled. This can be done with the following command:
c.harmonyreference 1
Required Dependencies (Oxide only):
Image Library: https://umod.org/plugins/image-library
Custom Items API:
Add a custom item to the item list. If an item is marked as persistent it will remain in the custom item list until it is removed by ClearCustomItems. All non-persistent items will be removed after the plugin that registered them has been unloaded.
(void) AddCustomItem(Plugin plugin, int itemId, ulong skinId) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, bool persistent) //(v1.0.27 or higher) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, string customName) (void) AddCustomItem(Plugin plugin, int itemId, ulong skinId, string customName, bool persistent) //(v1.0.27 or higher) (void) ClearCustomItems(Plugin plugin) //(v1.0.27 or higher) Example:
Its recommended to delay the call a little bit to make sure Loottable is loaded
private void Init() { timer.In(1f, () => { Loottable?.Call("AddCustomItem", this, -946369541, 2664651800, "High Quality Fuel"); }); }
Hooks:
(object) OnContainerPopulate(LootContainer container) This hook is called every time a loot container is about to be populated with loot. Returning a non-null value prevents the plugin from spawning loot into that crate.
(object) OnCorpsePopulate(LootableCorpse corpse) This hook is called every time an npc corpse is about to be populated with loot. Returning a non-null value prevents the plugin from spawning loot into that corpse.
(object) OnCustomAirdrop(SupplySignal signal) This hook is called every time a custom supply drop is about to be delivered. Returning a non-null value will cancel the custom supply drop.
- #loot
- #customloot
- (and 13 more)
-
Road Bunkers
This plugin adds bunkers to your server that spawn along roads. It doesn't require any complex setup or additional plugins; just launch it and it's ready to use.
You can also configure bunker types: building grade, security door color, and whether to use a fuse. You can also customize the loot in crates and their quantity.
Config:
{ "Bunker removal time after opening(in seconds)": 180, "Types of bunkers": [ { "Number of bunkers of this type on the map": 60, "Access level (from 1 to 3)": 1, "Fusebox spawn chance (0 to 100)": 0, "Minimum number of crates": 1, "Maximum number of crates (no more than 3)": 1, "Grade type (0 - twigs, 1 - wood, 2 - stones, 3 - metal, 4 - topTier)": 2, "Use own loot table": false, "SimpleLootTable name": "" }, { "Number of bunkers of this type on the map": 30, "Access level (from 1 to 3)": 2, "Fusebox spawn chance (0 to 100)": 50, "Minimum number of crates": 1, "Maximum number of crates (no more than 3)": 2, "Grade type (0 - twigs, 1 - wood, 2 - stones, 3 - metal, 4 - topTier)": 3, "Use own loot table": false, "SimpleLootTable name": "" }, { "Number of bunkers of this type on the map": 10, "Access level (from 1 to 3)": 3, "Fusebox spawn chance (0 to 100)": 100, "Minimum number of crates": 3, "Maximum number of crates (no more than 3)": 3, "Grade type (0 - twigs, 1 - wood, 2 - stones, 3 - metal, 4 - topTier)": 4, "Use own loot table": false, "SimpleLootTable name": "" } ], "Own loot table(there can be a maximum of 12 items in a crate)": { "minAmount": 2, "maxAmount": 4, "itemsList": [ { "name": "metal.fragments", "dropChance": 100, "minAmount": 50.0, "maxAmount": 300.0, "displayName": "", "skinID": 0 }, { "name": "metal.refined", "dropChance": 100, "minAmount": 5.0, "maxAmount": 10.0, "displayName": "", "skinID": 0 }, { "name": "scrap", "dropChance": 100, "minAmount": 10.0, "maxAmount": 20.0, "displayName": "", "skinID": 0 }, { "name": "techparts", "dropChance": 50, "minAmount": 1.0, "maxAmount": 2.0, "displayName": "", "skinID": 0 } ] } }
-
NPC Health Bar
NPC Health Bar is plugin compatible with all NPCs in Rust game, to provide its Health status info.
This also comes with few, already custom made, layouts that can be used straight away upon provided configuration file have been copied and pasted.
Nonetheless, these layouts and its parameters are customizable.
USE
/npcbar - opens up a menu to set up Your health bar
Features
health info text in-game EDIT MODE for players to resize, move and choose their own layout in some layout cases, also NPC name text Images , that are being made custom for some layout options or Images of your own customizable names of entities customizable position of the bar itself
Setup
- Copy and paste file into the .../oxide/plugins directory , configuration file will be created after first load of plugin, but main changes can be made through in-game Options menu or Edit mode menu.
-
Black Market - NPC Trader
Black Market
Rotating NPC Black Market Trader
Bring a High Stake, black market trader to your server. A mysterious NPC trader spawns and broadcasts their arrival and vanishes after a configurable amount of time. Players interact with a modern CUI shop to buy limited Stock, and players can get top teir items by completing delivery style contracts to the Black market ai.
Why should you buy this?
Works on PVP, PVE, Vanilla+, Modded and RP Servers Fully Configurable Stock, Missions, Cooldowns, spawn settings, marker, warnings, bodyguards, messages and sounds. Clean UI with pagination, cooldown indicators, affordability states and a live balance display
Features
Trader System
Random Spawns with configurable interval + lifetime of NPC Base Safe Spawning (avoids construction + deployed entities so it wont appear inside bases) Flat ground checking (extra slops checks to reduce awkward spawns) Trader is non-lootable and cannot be damaged Contracts/Missions
Players accept jobs and turn in required items to unlock higher-tiered purchases Active contracts shown in a dedicated UI section Admins can reset players progress Map Marker + Countdown Warnings
Optional map marker for trader location Optional departure warnings (configurable warning times) Bodyguards (Optional)
Enable guards, set count/health/prefab/radius Hostile or passive behaviour toggle in config Permissions
blackmarketai.use (optional gate, config controlled)
blackmarketai.admin
blackmarketai.vip (reduced cooldowns)
blackmarketai.nocooldown (bypass all cooldowns)
Commands
player
/bm info - trader status /bm missions - view active missions Admin (blackmarketai.admin)
/bm spawn - force spawn trader /bm despawn - remove all black market traders /bm tp - teleport to trader /bm reset [Name] - reset a player (or all players if no name is included) /bm stats - Npc trader stats Developer Hooks (for integration)
CanBlackMarketTrade(player, position) OnBlackMarketPurchase(player, itemShortname, quantity, costAmount) OnBlackMarketPurchaseComplete(player, itemShortname, quantity) OnBlackMarketMissionAccepted(player, missionId) OnBlackMarketMissionCompleted(player, missionId) OnBlackMarketTraderSpawned(position, grid) OnBlackMarketTraderDespawned(position)