-
Posts
89 -
Joined
-
Last visited
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by Barry_Allenn
-
Version 1.1.1
67 downloads
MBRewardOnline MBRewardOnline is a flexible Rust (uMod/Oxide) plugin that rewards players for real time spent online. It supports multiple currencies at the same time, permission-based rewards, time accumulation, and persistent data storage. Perfect for servers that want to encourage active play instead of AFK farming. Features ⏱ Rewards for real online time Persistent data storage (progress is saved between restarts) Permission-based rewards Multiple currencies per permission Automatic timer reset after reward Clean data structure (MBSystem/MBRewardOnline) Fully configurable via config Clean, optimized code (no heavy API dependencies) Supported Economy Systems MBCoins (mb.give) Economics (economics.deposit) ServerRewards (sr add) A single permission can reward multiple currencies at once Example: 100 MBCoins + 50 Economics + 25 ServerRewards Permissions mbrewardonline.premium mbrewardonline.vip mbrewardonline.default Permission priority is defined by config order (the first matching permission is used) Example Configuration { "Reward Interval (Minutes)": 10, "Permission Rewards (permission => economy => amount)": { "mbrewardonline.premium": { "MBCoins": 100, "Economics": 50, "ServerRewards": 25 }, "mbrewardonline.vip": { "MBCoins": 50, "Economics": 25, "ServerRewards": 10 }, "mbrewardonline.default": { "MBCoins": 20 } } } Data Storage Player data is saved to: oxide/data/MBSystem/MBRewardOnline/MBRewardOnline.json Stored data: accumulated online minutes progress persists through restarts How It Works Player joins → data entry is created Every minute online is counted When the interval is reached → rewards are given Timer resets and starts counting again 🛠 Requirements uMod / Oxide (Optional) Economics (Optional) ServerRewards MBCoins (if using that economy) Planned Features /online command UI progress bar Data reset on wipe Reward multipliers (e.g. x2 on weekends) Author Barry_Allenn Discord: https://discord.gg/6b5tkpDb57 Part of the MBSystem plugin ecosystem.$2.00 -
Version 1.5.0
162 downloads
MBCoins — Lightweight Currency System for Rust Servers MBCoins is a simple, fast, and reliable currency system built for Rust servers. It provides an easy way to store, modify, and retrieve player balances — perfect for shops, kits, privileges, rewards, vote systems, or any custom economy-based plugins. This plugin is extremely lightweight and works as a backend economy module for other MBSystem plugins or your own custom scripts. Features Fast and optimized player balance storage Automatic player registration on connect Easy-to-use API for other plugins Very lightweight — no UI, no unnecessary overhead Periodic auto-save + save on unload/shutdown Safe and stable for high-population servers API Methods Integrate MBCoins into other plugins easily: Get player balance float balance = (float)MBCoins?.Call("GetPlayerBalance", playerId); Add coins MBCoins?.Call("AddBalance", playerId, amount); Remove coins MBCoins?.Call("RemoveBalance", playerId, amount); Admin Commands Give coins mb.give <playerId> <amount> Example: mb.give 76561198000000000 100 Data Storage Balances are stored in: oxide/data/MBSystem/MBCoins/DataMBCoins.jsonFree -
In the new version it’s no longer needed, because it connects directly to MBHud if you are using it.
-
I will post an update right now
-
-
Version 1.6.2
134 downloads
MBShop — Advanced UI Shop for Rust (Cart, Categories, Multi-Economy) MBShop is a modern and fully customizable UI-based shop system for Rust, featuring a shopping cart, category system, image-based interface, and multi-economy support. Designed for smooth gameplay, performance, and professional server presentation. Perfect for PvP, PvE, modded, and commercial servers. Key Features 🛍 Full Shopping Cart System Add multiple items Buy everything at once Dynamic total price calculation 🗂 Category System Fully configurable categories Multilingual category names (EN / UK / RU) Horizontal scrolling Multi-Language Support English Ukrainian Russian Multi-Economy Support MBCoins Economics ServerRewards Easy switching via config 🖼 Image-Based UI Custom background images Item cell backgrounds Buy button background NPC image Coin icon Error & success notification icons Styled UI Notifications No chat spam Visual error & success messages Auto-hide after a few seconds Safe Item Delivery Inventory space validation No item dropping on the ground No dupes No lost items Configuration { "NPC Image URL": "https://i.ibb.co/r2Ft9sJQ/MBNPC.png", "Virtual currency image URL": "https://i.ibb.co/gbMSk6DV/Virtual.png", "Donate currency image URL": "https://i.ibb.co/KzzPd1cX/MBShop-Coin.png", "Scrap currency image URL": "https://ru-wiki.rustclash.com/img/items180/scrap.png", "Scrollbar Handle Color": "1 0 0 0.6", "Configuration of Categories and Items": { "Weapons": { "Translations": { "en": { "Enabled": true, "Text": "Weapons" }, "uk": { "Enabled": false, "Text": "Зброя" }, "ru": { "Enabled": false, "Text": "Оружие" } }, "Items": [ { "Name": "Assault Rifle", "Shortname": "rifle.ak", "Amount": 1, "Price": 10000.0, "Description": "High damage machine rifle.", "Currency (Donate, Virtual, Scrap)": 3 }, { "Name": "Thompson", "Shortname": "smg.thompson", "Amount": 1, "Price": 2.0, "Description": "A medium damage machine gun.", "Currency (Donate, Virtual, Scrap)": 2 }, { "Name": "Custom SMG", "Shortname": "smg.2", "Amount": 1, "Price": 0.1, "Description": "A rapid-firing Machine Gun. Sacrifices accuracy and distance for speed.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Pump Shotgun", "Shortname": "shotgun.pump", "Amount": 1, "Price": 0.1, "Description": "A Shotgun. Fires 8 rounds.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Revolver", "Shortname": "pistol.revolver", "Amount": 1, "Price": 0.08, "Description": "A standard eight shot revolver.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Nailgun", "Shortname": "pistol.nailgun", "Amount": 1, "Price": 0.06, "Description": "A construction tool turned deadly.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Ammo": { "Translations": { "en": { "Enabled": true, "Text": "Ammo" }, "uk": { "Enabled": false, "Text": "Боєприпаси" }, "ru": { "Enabled": false, "Text": "Патроны" } }, "Items": [ { "Name": "5.56 Rifle Ammo", "Shortname": "ammo.rifle", "Amount": 30, "Price": 0.05, "Description": "Ammunition for a Rifle. Loses velocity when fired over long distances resulting in slightly decreased damage.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Pistol Ammo", "Shortname": "ammo.pistol", "Amount": 30, "Price": 0.04, "Description": "Ammunition for a Pistol. Loses velocity when fired over long distances resulting in slightly decreased damage.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Shotgun Shells", "Shortname": "ammo.shotgun", "Amount": 12, "Price": 0.04, "Description": "Ammunition for a Shotgun.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Nails", "Shortname": "ammo.nailgun.nails", "Amount": 30, "Price": 0.03, "Description": "Standard nailgun ammunition", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Incendiary 5.56", "Shortname": "ammo.rifle.incendiary", "Amount": 20, "Price": 0.06, "Description": "Slower moving ammunition that deals fire damage. There's a small chance it will start a fire.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Medical": { "Translations": { "en": { "Enabled": true, "Text": "Medical" }, "uk": { "Enabled": false, "Text": "Медицина" }, "ru": { "Enabled": false, "Text": "Медикаменты" } }, "Items": [ { "Name": "Medical Syringe", "Shortname": "syringe.medical", "Amount": 2, "Price": 0.05, "Description": "Heal yourself or others with this syringe. Left-click heals you, right-click heals a target.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Bandage", "Shortname": "bandage", "Amount": 5, "Price": 0.03, "Description": "Heal yourself or others with this bandage. Left-click heals you, right-click heals a target.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Large Medkit", "Shortname": "largemedkit", "Amount": 1, "Price": 0.1, "Description": "A large medkit that heals you to max health over time and stops any bleeding instantly.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Anti-Rad Pills", "Shortname": "antiradpills", "Amount": 2, "Price": 0.03, "Description": "Taking these pills will lower your radiation level. WARNING: May cause extreme dehydration.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Resources": { "Translations": { "en": { "Enabled": true, "Text": "Resources" }, "uk": { "Enabled": false, "Text": "Ресурси" }, "ru": { "Enabled": false, "Text": "Ресурсы" } }, "Items": [ { "Name": "Wood", "Shortname": "wood", "Amount": 1000, "Price": 0.05, "Description": "Wood. Collected from trees and used in many crafting recipes. It's also needed to cook in camp-fires.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Stone", "Shortname": "stones", "Amount": 1000, "Price": 0.05, "Description": "Harvested from rocks using tools, basic building material.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Metal Fragments", "Shortname": "metal.fragments", "Amount": 500, "Price": 0.08, "Description": "Metal Fragments. Smelted from Metal Ore, used in lots of different crafting recipes.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Sulfur", "Shortname": "sulfur", "Amount": 500, "Price": 0.1, "Description": "Sulfur is commonly used in gunpowder, medicine, and matches. Matches release sulfur dioxide when they burn, giving them their smell. Sulfur is an essential component to living cells.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "HQ Metal Ore", "Shortname": "hq.metal.ore", "Amount": 50, "Price": 0.15, "Description": "A rock containing High Quality Metal. Can be smelted in a furnace.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Tools": { "Translations": { "en": { "Enabled": true, "Text": "Tools" }, "uk": { "Enabled": false, "Text": "Інструменти" }, "ru": { "Enabled": false, "Text": "Инструменты" } }, "Items": [ { "Name": "Hatchet", "Shortname": "hatchet", "Amount": 1, "Price": 0.05, "Description": "A Hatchet, useful for chopping trees and dismembering corpses.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Pickaxe", "Shortname": "pickaxe", "Amount": 1, "Price": 0.06, "Description": "A Pickaxe, useful for gathering ore from rocks.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Chainsaw", "Shortname": "chainsaw", "Amount": 1, "Price": 0.15, "Description": "A Chainsaw. Very effective at cutting trees in addition to soft fleshy objects. Requires Low Grade Fuel to run.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Jackhammer", "Shortname": "jackhammer", "Amount": 1, "Price": 0.12, "Description": "A Pneumatic Jackhammer to blast through ore nodes. The sheer power of this device requires no aiming as all weak spots will be instantly destroyed. Works well on human flesh. Can berefilled at a Workbench.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Hammer", "Shortname": "hammer", "Amount": 1, "Price": 0.03, "Description": "A Hammer, used to upgrade building materials. Right-click for the options. You can also pick up deployed objects while the hammer is equipped.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Building": { "Translations": { "en": { "Enabled": true, "Text": "Building" }, "uk": { "Enabled": false, "Text": "Будівництво" }, "ru": { "Enabled": false, "Text": "Строительство" } }, "Items": [ { "Name": "Tool Cupboard", "Shortname": "cupboard.tool", "Amount": 1, "Price": 0.1, "Description": "Placing and authorising with the cupboard will make it so only you can build in a 50 meter radius of it. If you want your friends to build, they'll need to auth too. You should protect this.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Sleeping Bag", "Shortname": "sleepingbag", "Amount": 1, "Price": 0.05, "Description": "A sleeping bag. Placing this will give you or an assigned player a place to respawn, with a long cooldown.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Door Key Lock", "Shortname": "lock.key", "Amount": 1, "Price": 0.03, "Description": "Place on a door to prevent unwelcome guests. You can create a key to share with your friends, don't let it fall in the wrong hands!", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Code Lock", "Shortname": "lock.code", "Amount": 1, "Price": 0.1, "Description": "An electronic lock. Locked and unlocked with four-digit code.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Wooden Door", "Shortname": "door.hinged.wood", "Amount": 1, "Price": 0.05, "Description": "A Cheap door to secure your base. Its vulnerability to fire and weak explosive resistance makes the door a temporary solution to securing your base. Due to its flaws you should look at The Wooden Door can take two kinds of locks the basic Key Lock and the Code Lock. To pick up the door, remove any locks and open, hold down the E (USE) key and select 'Pickup'.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Metal Door", "Shortname": "door.hinged.metal", "Amount": 1, "Price": 0.1, "Description": "Medium strength door, vulnerable to explosives.", "Currency (Donate, Virtual, Scrap)": 1 } ] }, "Clothing": { "Translations": { "en": { "Enabled": true, "Text": "Clothing" }, "uk": { "Enabled": false, "Text": "Одяг" }, "ru": { "Enabled": false, "Text": "Одежда" } }, "Items": [ { "Name": "T-Shirt", "Shortname": "tshirt", "Amount": 1, "Price": 0.03, "Description": "A tshirt, simple undergarment. Good protection from damage and the elements.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Pants", "Shortname": "pants", "Amount": 1, "Price": 0.03, "Description": "A pair of pants, highly capable undergarment for your legs. Great all round protection from damage and the elements.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Hoodie", "Shortname": "hoodie", "Amount": 1, "Price": 0.05, "Description": "A hoodie.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Boots", "Shortname": "shoes.boots", "Amount": 1, "Price": 0.04, "Description": "Sturdy work boots to keep your toes safe, you'd feel nothing if you kicked a table leg. Strong protection against the cold and incoming damage.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Roadsign Vest", "Shortname": "roadsign.jacket", "Amount": 1, "Price": 0.1, "Description": "A shoddy piece of body armor made from roadsigns.", "Currency (Donate, Virtual, Scrap)": 1 }, { "Name": "Roadsign Kilt", "Shortname": "roadsign.kilt", "Amount": 1, "Price": 0.1, "Description": "A shoddy piece of leg armor made from roadsigns. Moderate protection from melee and projectiles.", "Currency (Donate, Virtual, Scrap)": 1 } ] } }, "Donate economy plugin (Economics, ServerRewards, MBCoins)": "MBCoins", "Show Donate balance": true, "Virtual economy plugin (Economics, ServerRewards, MBCoins)": "Economics", "Show Virtual balance": true, "Enable Scrap economy": true, "Global discount percent (0-100)": 0.0, "Show Discount": true, "Permission discounts (permission = percent)": { "mbshop.vip": 10.0, "mbshop.premium": 20.0 } } 🖱 Modern UI Controls Quantity selector (+ / -) Scrollable item grid Scrollable cart Animated UI background blur Highly Configurable Categories Item prices Item amounts UI images via URLs Economy type Supported Economies Economy PluginSupported MBCoins Economics ServerRewards Supported Languages English (Default) Ukrainian Russian All UI elements, buttons, cart, prices, and notifications are localized. Security & Stability Protected ConsoleCommand handlers No RCON abuse No UI exploits Safe balance deduction Inventory validation before purchase Memory cleaned on player disconnect 🖼 UI Image System All UI images are loaded dynamically using an internal Local Image Loader: Shop background Item cell background Category background Buy button Total price panel NPC image Coin icon Error icon Success icon Images are fully configurable via URLs in the config. Example Config Snippet { "NPC Image URL": "https://yourimage.com/npc.png", "Coin image URL": "https://yourimage.com/coin.png", "Economy type (Economics, ServerRewards, MBCoins)": "MBCoins" } Commands Command Description /shop Open the shop UI 🛠 Requirements At least ONE of the following economy plugins: MBCoins Economics ServerRewards No other dependencies required. Perfect For: Donat shops PvP storefronts PvE progression shops VIP reward systems Premium monetization systems$13.00 -
Version 1.1.0
315 downloads
MBButtons — Quick Command Buttons for Rust MBButtons is a lightweight UI plugin for Rust that adds a configurable panel with quick-access buttons to execute chat and console commands directly from the screen. The plugin automatically displays the button panel when a player connects, after death, and on respawn. The interface is also properly removed when the plugin is unloaded. Features: Displays a compact button panel at the bottom of the screen. Fully configurable buttons via config file. Supports any commands: chat.say console commands commands from other plugins Automatic UI refresh: on player connect after death after respawn Clean UI removal on plugin unload. Default Buttons: Menu → /menu Report → /report Configuration: Each button is configured individually: { "Buttons": [ { "Text": "Menu", "Command": "chat.say /menu" }, { "Text": "Report", "Command": "chat.say /report" } ] } Text — button label Command — command executed on click 🛠 Technical Info: UI built using CUI Buttons automatically scale and distribute evenly across the panel based on the number of buttonsFree -
Version 1.3.8
154 downloads
MBHubUI – Modular Hub Interface for Rust MBHubUI is a powerful and flexible hub interface designed to connect all your MB plugins into one clean and modern menu. It allows players to easily access different systems such as Kits, Rules, Calendar, Shop, Statistics, Drops, and more — all from a single interface. Main Features Central hub for all MB plugins Fully modular — enable or disable any button via config Supports: MBMainMenu MBKits MBCalendar MBRules MBCommands MBPrivileges MBPromoCode MBStatistics MBVoteMap MBShop MBDrops Automatic opening of the selected plugin UI Closes all other plugin UIs when switching tabs Built-in image loader (icons & backgrounds) Supports multiple languages (EN, RU, UA) Works through chat commands: Easy Configuration You can easily control which plugins are displayed inside the hub via the config: Enable or disable each button Fully modular structure Automatically adapts to the plugins you are using Modern UI Design Clean layout Smooth navigation Custom background Icon-based buttons Blur background effect Perfect For Servers using multiple MB plugins Projects that require a single unified menu Custom Rust servers with a clean UI style Shops, Kits, Drops, and Statistics-based servers Required Plugins Only the plugins you enable in the configuration are required. MBHubUI automatically adapts to what is installed on your server.$2.00 -
-
Version 1.3.1
238 downloads
MBMainMenu - Premium Main Menu for Rust MBMainMenu - a stylish, animated, and fully customizable main menu that welcomes players from the very first seconds on your server and transforms a regular join into a true WOW experience Make your server look modern, professional, and truly premium. Core Features Real-Time Server Information Online players Max player limit Player joins Queue size Server time 🗺 Map size Server rates Team size Game mode (PvP / PvE / Solo / Duo / Trio, etc.) Live Event Tracking Icons automatically switch between ON / OFF states: Airdrop Cargo Ship Chinook Patrol Helicopter 🛡 Bradley APC Players always know what’s happening on the server right now Economy & Rewards Supports 3 popular economy systems: Economics ServerRewards MBCoins Features Balance progress indicator First join reward ⏱ Online time rewards 🕹 Total playtime tracking Website & Social Integration All links open in clean UI windows with QR codes: Website Discord TikTok Instagram YouTube Each window includes Copy button QR code Stylish banner Quick close button Multilingual Support Full multi-language support Custom welcome text for each language Automatic language detection Visual Design 🌫 Blurred background Smooth animations Clean and modern UI 🖼 Custom backgrounds NPC character in menu Online and balance indicators Your server will feel like a high-end Rust project, not a basic setup Requirements ImageLibrary Economics or ServerRewards or MBCoins Author Barry_Allenn 🛠 Regular updates and support Discord https://discord.gg/6b5tkpDb57$8.00 -
- 9 comments
-
- 1
-
-
Version 1.4.7
133 downloads
MBStatistics — The Ultimate Player Statistics & Ranking System for Rust MBStatistics is a modern, stylish and highly accurate player statistics plugin for Rust servers. It tracks player behavior, records detailed activity data, calculates points, prevents stat abuse, and displays everything through a clean, responsive, and beautiful UI. Key Features Complete Player Statistics MBStatistics automatically records: Kills Deaths Suicide Playtime Resource gathering: Stone Metal Ore Sulfur Ore HQ Metal Ore Wood Cloth Low Grade Fuel Scrap Broken barrels Total points Point System (Fully Configurable) Points are awarded for: Resource gathering Killing players Breaking barrels Any resource listed in the config Points are deducted for: Player death Suicide Both events reduce points according to your configuration. Values are fully customizable. Points will never go below 0 — the plugin ensures a minimum of 0. Modern UI / UX The plugin includes a clean, animated, and user-friendly interface: Player avatar display Global player leaderboard (sorted by points) Detailed personal statistics panel Resource list with icons Search system (by nickname or SteamID) Blurred or clean background (toggleable) Smooth scroll panels Full ImageLibrary support The UI is visually appealing, lightweight, and optimized for all types of clients. Multilanguage Support Built-in translations: English Russian Ukrainian You can easily customize or add more languages. Commands Player Command /stat Opens the full statistics and ranking UI.$7.00 -
Version 1.3.1
83 downloads
MBCalendar - Stylish Wipe Calendar for Rust Overview MBCalendar - a clean, stylish, and functional wipe calendar plugin for Rust servers. It allows players to easily view all upcoming global and regular wipes directly in a modern in-game interface. Fully customizable, multilingual, and integrated with ImageLibrary, this plugin is a perfect addition for any server that wants a clear and informative UI. Features 🗓 Beautiful calendar interface showing all wipes for the month Supports both global and regular wipes Timezone configuration (set +2, -5, etc. for your region) Displays exact date and time for every wipe Organize wipes by month directly in config Multilingual support (English, Russian, Ukrainian) 🖼 Built with ImageLibrary - no extra files, fast loading Lightweight, optimized, and easy to configure 🖥 UI Features Smooth layout with day and month navigation Highlighted days with wipe events Different colors and icons for global and regular wipes “Next Wipe” and “Last Wipe” displays with accurate countdown Commands /calendar - Opens the wipe calendar interface$5.00 -
Version 1.2.0
71 downloads
MBRules — Stylish and Interactive Server Rules UI MBRules is a modern, beautifully designed Rust plugin that lets you display your server’s rules through a clean, expandable, and multilingual interface. Features: Modern UI — sleek, minimalistic interface with background images, smooth layout, and easy scrolling. Expandable rules — each rule can be expanded to show full text. Multilanguage support — English, Ukrainian, and Russian included (add your own easily). Last updated date — shows when the rules were last updated. Simple controls — players can open rules with /rules and close the window by clicking outside. ImageLibrary integration — all backgrounds and images are handled through ImageLibrary. Commands: Command Description /rules Opens the server rules UI Requirements: ImageLibrary (required) Configuration: { "LastUpdated": "2025-10-23", "Rules": [ { "Descriptions": { "en": { "Enabled": true, "Text": "By joining the MB-UA server, you automatically agree to comply with all project rules. Ignorance of the rules does not exempt you from responsibility." }, "uk": { "Enabled": true, "Text": "Заходячи на сервер MB-UA, ви автоматично погоджуєтесь з дотриманням всіх правил проєкту. Незнання правил не звільняє вас від відповідальності." }, "ru": { "Enabled": true, "Text": "Заходя на сервер MB-UA, вы автоматически соглашаетесь соблюдать все правила проекта. Незнание правил не освобождает вас от ответственности." } } } ] } Perfect for: RP, PvE, PvP, and modded servers Admins who want a clear and stylish way to present their rules Multilingual communities$4.00 -
-
- 9 comments
-
-
-
-
- 3 comments
-
Version 1.4.6
69 downloads
MBPrivileges MBPrivileges is a modern Rust plugin that provides a stylish system for viewing and purchasing in-game privileges. It features a fully custom CUI-based interface and supports multiple economy systems. Key Features: Beautiful and intuitive UI to display all available privileges. Supports MBCoins, Economics, and ServerRewards — choose the economy system that fits your server. Fully customizable privileges: Group Name (GroupName) Duration (DurationText) Price (Price) Image (ImageUrl) Multi-language descriptions (EN / RU / UK) Integration with ImageLibrary for image loading and display. Simple navigation — close or go back with a single click. Multi-language support: English, Russian, Ukrainian. Commands: /vip — opens the privilege menu. New Features Visual UI banners instead of chat messages: Successful purchase Not enough funds Purchase error Purchase confirmation required Purchase in quantities: Added + / − buttons to select the purchase amount Price and duration are automatically recalculated based on quantity Purchase confirmation: Before pressing “Buy”, the player must tick the confirmation checkbox After purchase, the confirmation resets automatically Balance indicator: The player’s current balance is now displayed directly in the interface Updates in real time when the player changes quantity or completes a purchase Dependencies: Economics (optional) ServerRewards (optional) MBCoins (optional) Configuration: All settings are managed via the configuration file: { "Privileges": [ { "GroupName": "vip", "DurationText": "14d", "Price": 10, "ImageUrl": "", "Descriptions": { "en": { "Enabled": true, "Text": "Prefix [VIP] ... description in English ..." }, "uk": { "Enabled": true, "Text": "Prefix [VIP] ... description in Ukrainian ..." }, "ru": { "Enabled": true, "Text": "Prefix [VIP] ... description in Russian ..." } } }, { "GroupName": "premium", "DurationText": "14d", "Price": 15, "ImageUrl": "", "Descriptions": { "en": { "Enabled": true, "Text": "Prefix [PREMIUM] ... description in English ..." }, "uk": { "Enabled": true, "Text": "Префікс [PREMIUM] ... description in Ukrainian ..." }, "ru": { "Enabled": true, "Text": "Prefix [PREMIUM] ... description in Russian ..." } } }, { "GroupName": "deluxe", "DurationText": "14d", "Price": 20, "ImageUrl": "", "Descriptions": { "en": { "Enabled": true, "Text": "Prefix [DELUXE] ... description in English ..." }, "uk": { "Enabled": true, "Text": "Префікс [DELUXE] ... description in Ukrainian ..." }, "ru": { "Enabled": true, "Text": "Prefix [DELUXE] ... description in Russian ..." } } } ], "Economy type (Economics, ServerRewards, MBCoins)": "MBCoins" }$7.00 -
- 9 comments
-
Version 1.4.7
192 downloads
MBKits — Modern Kit UI with Previews, Cooldowns, AutoKits & Permissions MBKits is a modern, fully customizable and visually refined Rust plugin for managing player kits through an advanced UI. It features a polished interface, animated intro images, detailed kit previews, cooldowns, autokits, pop-up notifications, flexible permissions, item skins, ammo support, and deep integration with systems. Core Features Beautiful Modern UI Clean scrollable interface with a 3-column grid for kits. Fully image-driven design (backgrounds, kit icons, overlays). Optional animated intro images on player connect. Supports custom images for individual kits. View Kit Contents Players can preview every item inside a kit: Detailed inventory layout: Main, Belt, Wear. Supports custom skins, modded items, nested contents. Shows weapon ammo, attachments, and item quantities. Supports custom icons per item via custom image keys. Advanced Cooldown System Per-kit cooldowns: 1h, 30m, 2d4h, etc. UI shows exact remaining cooldown time. Cooldowns persist through server restarts. Per-player cooldowns stored in data files. Permission Support Each kit can require its own permission. Permissions auto-register if missing. UI reacts to permission state: No access → greyed-out button. Hidden kits optionally supported. Claim System Checks if the player has enough space before giving the kit. Fully supports skins, ammo, attachments, modded weapons. Smart fallback logic if the intended slot is occupied. Custom commands per kit item using {playerid} and {name}. Success & error popups using dynamic UI with icons. Multi-language Support Built-in languages: English Russian Ukrainian All UI text and messages are fully localized and stored in separate language files. YouTube 🛠 Admin Tools Create / Remove Kits Create kit from your inventory: /dkit add <name> [permission] Saves main, belt, wear containers. Automatically creates a permission if not supplied. Sets default cooldown. Remove a kit: /dkit remove <name> Deletes the kit. Clears all cooldowns for all players. Create / Remove AutoKits /akit add <name> /akit remove <name> Permission System Requires mbkits.admin to manage kits. Kit permissions auto-create: mbkits.<kitname> Autokits: mbkits.autokit.<name> Commands Command Description /kits Opens the main kit UI /dkit add <name> Creates a new kit from your current inventory /dkit add <name> <permission> Creates a kit with a custom permission /dkit remove <name> Deletes a kit and clears all cooldown data /akit add <name> Creates a hidden AutoKit from your inventory /akit remove <name> Removes an AutoKit Data Files Stored under: oxide/data/MBSystem/MBKits/ MBKits_kits.json — player kits MBKits_cooldowns.json — per-player cooldowns MBKits_uses.json — usage limits MBKits_autokits.json — hidden autokits$7.00- 3 comments
- 1 review
-
- 1
-
-
Version 1.4.5
40 downloads
MBDrops — Advanced Drops & Player Activity Ranking System MBDrops is a modern, fully customizable drop & ranking system for Rust servers. It turns player activity into points, automatically builds a TOP leaderboard, distributes rewards at wipe, and presents everything through a polished, animated UI. Key Features Customizable Drop System Create unlimited drops — each with: Title Custom image (URL) Reward command executed for the winner after wipe Perfect for seasonal competitions and wipe reward systems. Player Activity Ranking Players automatically earn points for various in-game actions: Mining resources (stone, metal ore, sulfur, wood) Collecting berries Destroying barrels Looting Oil Rig / Chinook crates Killing NPCs Destroying the Bradley APC …and more All point values are fully configurable. Automatic Wipe Detection & Reward Distribution Upon detecting a new wipe, the plugin will: Automatically reward the TOP players Send a detailed Discord webhook embed Reset all points and begin a new season No manual actions required — the system works on its own. Discord Webhook Integration Sends a clean, professionally formatted embed containing: Player names Points Placement Reward title Drop item image (URL) Great for transparency and community engagement. 🖼 Modern, Stylish UI Player avatar display Drop list (scrollable) TOP leaderboard (scrollable) Smooth layout & animation Local image caching for faster loading Multi-language support Commands Player Command /drops Configuration Below is the full configuration structure used by MBDrops. All values are fully customizable. { "NPC Image URL": "https://i.ibb.co/r2Ft9sJQ/MBNPC.png", "Discord Webhook URL": "", "Drops": [ { "Title": "Drop #1", "Item Image URL": "https://site.com/item1.png", "Reward Command": "give {steamid} scrap 500" }, { "Title": "Drop #2", "Item Image URL": "https://site.com/item2.png", "Reward Command": "spawn sedan" }, { "Title": "Drop #3", "Item Image URL": "https://site.com/item3.png", "Reward Command": "oxide.grant user {steamid} some.permission" } ], "Points per barrel destroyed": 0.1, "Points per berry collected": 0.05, "Points per bot kill": 0.2, "Points per Chinook crate opened": 5.0, "Points per full metal ore mined": 0.06, "Points per full stone mined": 0.03, "Points per full sulfur ore mined": 0.05, "Points per Oil Rig crate opened": 5.0, "Points per tank destroyed": 10.0, "Points per tree chopped": 0.05 } Requirements ImageLibrary$7.00 -
Version 1.0.0
256 downloads
MBLogo — Server Logo & Info Display Displays the server logo and key information in the top-right corner of the screen. Shows two customizable title lines, current in-game time, number of online players, and sleepers. All data updates automatically without UI reloads. Features Displays two customizable title lines (supports color and formatting via RichText). Shows: current in-game time; number of online players; number of sleeping players. Automatic data refresh at a configurable interval. Update interval is adjustable via the config file. Clean, minimal UI design positioned in the top-right corner. Configuration { "Title Line 1": "<color=#0057b8><b></b></color>", "Title Line 2": "<color=#ffd700><b></b></color>", "Time update interval (in seconds)": 20.0 } Parameter explanation: Title Line 1 / 2 — Text lines for your server name or branding. You can use color codes, <b>, and <i> formatting. Time update interval (in seconds) — How often (in seconds) the time and player info update.Free