Jump to content
Combined Storage lets players connect multiple storage containers so they function as one large inventory. Includes automatic item sorting, search functionality, and filtering to keep storage clean and efficient.   Readme Link - Click Here for Instruction and Documentation 👆 Highly recommend reading the FAQ section!   All Your Items - In One Place Link multiple containers so they all share a single organized inventory.   Automatic Sorting Items are automatically sorted as they are inserted, no manual effort required. Search Functionality Quickly find any item across all linked containers using a fast, built-in search bar.   Simple Setup Simply press Link in a container to hook it up with the rest of them in your base. Unique View for Each Player Each player sees their own automatically sorted and filtered view of the shared inventory based on their preferences, without affecting anyone else.    
5.0
$32.99
Well rounded shop, with various features. It's standalone plugin which is compatible with WelcomePanel, HumanNpc. This plugin also supports selling commands, wipe block, no escape, sales, permission access.   Multi-currency support Use different currencies for different items. Economics and ServerRewards (RP) is supported as well as scrap or any other ingame item.     Restrictions Combat, raid, spawn and building block supported alongside with  basic cooldowns and wipe block.   NoEscape is required for combat and raid block.       Appearance   Simple and clean design to ensure smooth user experience for your players.   Additionally Shop can be inserted into WelcomePanel to achieve "all in" server panel.   Customization Widely customizable and feature rich Shop which will  fit all needs of your community.         Field Tested Plugin made by experienced developer,  tested by hundreds of server owners and used by some big organizations.       Discord   Customer support available on discord,   Installation - unzip downloaded package and place Shop.cs file into your plugin folder. - after succesfuly loading the plugin, data folder oxide/data/Shop will be generated - take data files provided in plugin package and drop them into your Shop data folder After finishing these steps your shop is ready to used.         Server Currency   If you don't wish to use ingame items as currency make sure you use either Economics or ServerRewards as you currency management as only those two plugins are compatible with Shop. Default currency setting is Economics ("eco"), if you wish to change it navigate to "oxide/data/Shop/Items.json", open this file in some text editor (VSC recommended) and simply select "eco" and mass replace for desired value. (video here) "eco" for Economics "rp" for ServerRewards "scrap" or any other ingame item   Shop Categories To remove, change or add new categories open "oxide/data/Shop/Categories.json" file. There you will find all categories alongside with items lists. If you wish to remove certain items from category, just head over to item list and delete from there.   Items Changing prices In "oxide/data/Shop/Items.json" you will find every item with their properties, to quick search for specific items press "CTRL + F".  By leaving BuyPrice or SellPrice at 0 you will disable selling or buying of said item. Due to multi-currency support prices can be set only in whole numbers, no decimals. To offset for this, you can set minimal amount requirement. For example instead of selling one piece of wood for 0.01$ you can set minimal amount of  100x wood for 1$.   Removing items If you wish to remove some items from Shop, you can do that directly in  "data/Shop/Categories.json" file. Removing items from "Items.json" is not needed as they have no effect unless they are listed in some category. Adding new items To add new item you must first head over to "Items.json" data file and create new entry by copy pasting some of the existing ones. Once done with that you can add the  item into category. To add multiple versions of same item can be created by simply adding unique tag behind shortname, for example "rifle.ak{1}",  "rifle.ak{2}", etc...   Commands Adding new commands Commands can be create at "data/Shop/Commands.json". Plugin can only run server side console commands and then parse steam id or player name with tags {steamid} and {playername}. There are two examples shown in default data file. Server side console commands are common thing and almost all plugins utilize them. Listing commands in categories Simply type in one of your command names into category item list like this "cmd/yourCommandName". Slash cmd in front of command name is there to make difference between ingame item and command.   Cooldowns These are very basic, cooldown is triggered when buy/sell action is triggered. By using minimal amount requirement for items you can manage how much player buy and how often. Cooldowns are managed in "data/Shop/Cooldowns.json". Default data file contains two example of cooldowns but it's simply shortname and amount of seconds.     Restrictions Raid and Combat Block Managed by NoEscape plugin, option to enable these two block can be found in config file. Building Block Prevents players from using shop while they are building block, option can be found in config file. Spawn Block Prevents players from using shop after they respawn, amount of seconds can be set in config file, 0 = disabled. Wipe Block Prevents players from buying specific items after wipe. Settings are located in "data/Shop/ItemsWipeBlock.json", similar as cooldowns.   Sales By Permission (config file) Discount on every item in the shop assigned by permission, multiple permission can be created with their own discount values. By Category (categories data file) Discount for every item within specified category. By Item Discount for specific item in the shop. If item is already in discounted category, higher discount will be applied.   WelcomePanel integration To integrate this plugin into WelcomePanel simply use one of the four configs included in download package. These config were premade for each WelcomePanel template (goes from 1 to 4). In case you have own  highly customized layout for WelcomePanel you will have to adjust "Layout Container" in Shop config file by yourself.                  
4.9
Allows both PVE and PVP players to exist on a server at the same time. PVE players will have certain configurable protections and restrictions. You can have players use a command to flag themselves as PVP/PVE or you can assign it to them when they first spawn. If you have ZoneManager you can also designate specific zones to force player's to be PVE or PVP. Plugin is also compatible with SimpleStatus. Note: Video is outdated, see documentation for a full list of new features! Documentation: A full readme including permissions, commands, and config options is available in  this google doc link. Disclaimer: Like all of my plugins - this plugin is sold as is. I will be happy to take feature requests into consideration but make no guarantees about which ones get implemented. Please refer to the feature list before you make your purchase! Developer API: API Methods // Returns the mode of the given entity. Also takes into account if the entity is in a forced mode zone. string GetEntityMode(BaseEntity entity); // Returns the group name for the given mode. For example if given 'pve' will return 'warmodepve' string GetModeGroup(string modeId); // Returns the target type for a given entity. Target types are the category that an entity falls into. // For example, if given a BasePlayer entity, it will return 'players'. If given a horse entity is will // return 'horses'. string GetEntityTargetType(BaseEntity entity); Hooks - place these in your plugin and WarMode will call them. // Called when a player's mode has been updated or config changes have ocurred that may affect the mode. private void WarMode_PlayerModeUpdated(string userid, string modeId) // Used to override WarMode logic for taking damage. // If true/false is returned then WarMode logic will be skipped. Return null to continue WarMode logic. private object CanEntityTakeDamage(BaseCombatEntity target, HitInfo info) // Used to override WarMode logic for targeting. // If true/false is returned then WarMode logic will be skipped. Return null to continue WarMode logic. private object CanEntityBeTargeted(BasePlayer target, BaseEntity attacker, bool skipVendingCheck) // Used to override WarMode logic for triggering a trap. // If true/false is returned then WarMode logic will be skipped. Return null to continue WarMode logic. private object CanEntityTrapTrigger(BaseTrap trap, BasePlayer basePlayer) // Used to override WarMode logic for looting an entity. // If true/false is returned then WarMode logic will be skipped. Return null to continue WarMode logic. private object CanEntityLoot(BasePlayer looter, BaseEntity target, bool skipVendingCheck) FREE Extension Plugins: War Mode Admin Panel Use the /warmode.config or /wmc command to open a panel that allows admins to update mode rules in game without having to reload the pluign. Requires the warmode.admin permission to use. I HIGHLY recommend you use this extension! WarModeAdminPanel.cs War Mode Spawn UI Provides a UI that is shown to players when they first spawn that prompts them to choose whether they want to be PVP or PVE.   Also supports custom modes. Localization and config options available. This can also be configured to appear when players use the /flag command. WarModeSpawnUI.cs     War Mode Rules UI Using the /rules command (which is configurable) players can see a list of what restrictions they have for their current mode. These ruling will update dynamically based on your config settings. WarModeRulesUI.cs   War Mode Badges Customizable UI elements that will appear on the player's HUD to indicate what their current mode is. WarModeBadges.cs  
4.8
AI-Powered Anti-Cheat & Moderation Galium: the automated anti-cheat & moderation platform for Rust organizations Detection, intelligence, and enforcement, automated and unified in one organizational dashboard. Galium reads live, server-side gameplay to catch cheaters, teamers and rule-breakers from the way they play, then enforces automatically, 24/7, across every server you run. No client install. Works alongside EAC. Request Access Join Discord 40,000+ players monitored live 2021 protecting Rust since 24/7 automated enforcement Your browser does not support the video tag. One automated layer over your whole operation Galium is an anti-cheat at its core, designed to detect behavioral abuse through live production signals, risk modeling, and automated enforcement workflows. Everything runs server-side, so there is no client for players to install or tamper with, and detection runs off your game server without taxing your tick rate at peak population. It analyzes four live behavioral signal streams in real time, and acts the moment a player crosses the line you set: Combat Aim, recoil & hit patterns Movement Speed, flight & position Chat, voice & signs AI toxicity & NSFW Teams Cooperation & grouping Automated Pillar 01 Server-side anti-cheat Galium flags the full range of Rust cheats from live gameplay, not from the player's machine, from blatant aimbot to the subtle no-recoil that slips past everything else. Every flagged player carries a single risk score and tier, so your staff review who matters first. Detects in real time Aimbot, triggerbot & aim assistance No-recoil & no-spread Spinbot, flyhack & speedhack Scripting & automation Risk scoring & tiers One risk score per player, not per detection Severity tiers prioritize who to review first Explainable & auditable, never black-box Weighting refined through years of real outcomes Automated Pillar 02 Teaming detection, in 3D Teaming beyond your group limit is the hardest rule on Rust to police, and the easiest to hide. Galium surfaces the relationships behind it and maps who is actually cooperating with whom, so you can act on evidence instead of suspicion. ✓ Flags cooperation that exceeds your group limit ✓ Player-to-player, player-to-clan & clan-to-clan scoring ✓ Weighted by interaction and proximity over time Teaming on the 3D map · by RankEval Automated Pillar 03 AI Moderation Toolkit One AI-driven toolkit reads everything players type, say and draw. Language models score chat, speech models transcribe and judge voice, and computer vision scans every spray and sign. It acts in-game the moment something crosses the line, without a moderator in the loop. Chat AI toxicity scoring + word filters Auto-mutes offenders instantly Every action logged to Discord Voice AI transcribes voice in real time Flags toxic & abusive players Optional auto-enforcement & logs Images AI vision scans every spray & sign Flags NSFW & offensive imagery Auto-removed, no manual review Automated enforcement that never sleeps Detection only matters if something happens next. Build no-code rules (trigger, condition, action) and Galium bans, mutes, kicks or alerts the moment a player crosses your threshold, across every server, 24/7. ✓ No-code automation rules: trigger → condition → action ✓ Bans, mutes, kicks and alerts fire automatically, 24/7 ✓ Two-way BattleMetrics ban sync ✓ Full Discord moderation bot, with actions & alerts posted live ✓ Ban history, mute history, evidence linkage & full audit trails From a single server to a whole organization Run one server or fifty. Galium fits both, and grows with you. Where most plugins stop at a single server, Galium gives every player one identity, one risk score and one enforcement history that follows them across everything you run. ✓ One player identity across your entire org ✓ Risk follows the player, not the server they join ✓ Behavioral profiles persist beyond wipe cycles ✓ Staff actions are fully traceable across teams No silos. No per-server blind spots. One structured organizational view. Plugs into the tools you already run Discord A full moderation bot with live alerts, actions and logs in your server. BattleMetrics Two-way ban sync keeps enforcement consistent everywhere. RankEval Player-position tracking and the 3D teaming map. Automated moderation at scale starts here If you operate Rust servers and need cross-server cheat detection, teaming intelligence and automated enforcement that runs itself, and Galium is the infrastructure to support it. Request Access Join Discord See every feature in detail at galium.gg/features Automated Rust anti-cheat since 2021 · 40,000+ players monitored live · Built by CyberSynthetics Solutions LLC
5.0
Stop wasting weeks on configs and loot tables – get a pro server in minutes. This is a complete "Server-in-a-Box" designed for 2x Gather servers. It includes my Premium Loottable and a perfectly balanced suite of around 30 plugin configurations. Everything can be easily adjusted to fit your specific needs. If you ever run into issues or want to tweak a setting, I am here to help! TOP FEATURES: Merged Outpost & Bandit: Optimized for performance and convenience. All Bandit Camp shops and airwolf are integrated into the Outpost. Perfect Balance: 2x Wood/Stone, 1.5x Sulfur. No junk in loot crates. Monument Upgrades: Recyclers & Drones added to Fishing Village, Ranch, and Barns. Optimized Speed: Faster smelting, crafting, and recycling. Time Control: 55m Days / 5m Nights and much more (Add the files that you want to use). Possible to get helispawn on road, rhib boats at coast and 50% upkeep by request. BetterLoot V.4: Optimized for 2x: This setup is perfectly balanced for a 2x experience with 5 star reviews. Need a different rate? Check out my 3x and 5x Server setup! WHAT YOU GET: Config & Data Folders: 30+ tuned files (Loot, Files for plugins, Monuments, etc.). Language Files: Clean chat messages and prefixes. Plugin explanation:  BetterLoot: Custom 2x loot tables (june 2026 update). GatherManager: Optimized 2x gather rates. QuickSmelt: Faster furnace smelting. StackSizeController: Increased stack limits. CraftingController: Adjusted crafting speeds. AutoAuth: Shared TC, Turret & Lock access. BuildingWorkbench: Extended workbench radius. RecyclerSpeed: Faster recycling. BetterChat/Mute: Chat formatting & muting. PermissionsManager: GUI for permissions. AdminRadar: Admin tracking tool. CopyPaste: Building copy/paste tool. TimeOfDay: Custom day/night cycles. SignArtist: Custom images on signs. ImageLibrary: UI icon support. UnburnableMeat: Prevents burnt meat. LootBouncer: Refreshes containers by spawning new loot if not fully emptied. Godmode: Admin invincibility & protection. InventoryViewer: Remote player inventory inspection. MonumentAddons: Adds custom features to monuments. MonumentFinder: Required for locating monuments. And more! No extra costs for plugins! Easy Setup: Very little Knowledge Required: Designed to be as easy as it gets—perfect for both new and experienced server owners. Step-by-step README included. Also plugin explanation, links to all the plugins to make it as easy as it gets to get the server up n runing. NOTE: This is a Configuration-only pack. Plugin files (.cs) are not included to ensure you always use the latest versions from uMod/Codefling.Simply download the plugins and drop them in!
5.0
Welcome to ThemePark Island An expansive and meticulously crafted custom map for Rust, brought to you by the combined efforts of Silent Creations and Explosive Shart. This map blends high-octane thrill-seeking with gritty, urban survival. Whether you’re riding a functional coaster or navigating the trap-filled halls of a medical center, ThemePark Island offers a fresh gameplay loop for PVP and PVE servers alike. 🎡 Featured Custom Monuments The Theme Park The crown jewel of the island. This isn't just a static monument—it features a fully functional, custom-coded rollercoaster. Scale the heights for a view of the island before diving into the chaos below. Loot: High-density loot spawns throughout the park. Puzzles: Includes both Green and Blue keycard puzzle rooms. The 2 Gorges Dam A massive, custom-built architectural marvel. The dam dominates the landscape, offering scenic vistas and deep, dark secrets. Underground Puzzles: Navigate multiple puzzle rooms hidden deep within the structure. Tactical Depth: Perfect for long-range engagements or sneaky subterranean looting. Black Rock City A sprawling urban center that feels like a lived-in wasteland. Black Rock Medical Center: Enter at your own risk. This landmark is rigged with traps, multiple puzzles, and enough loot to supply an entire clan. Lazarus Automotive: A unique urban addition for those looking to secure high-tier parts. Pine Bluff A smaller, dense city center for quick skirmishes and essential supplies. Interiors: Explore a replica McDonald’s and a completely custom Supermarket. Puzzles: Features multiple puzzles and heavy loot concentrations. Mills Trailer Park An eerie, abandoned residential area. Puzzles: Features 2x Green Card puzzles and 1x Blue Card puzzle, making it a high-value stop for progression. Additional Points of Interest 7-Eleven: That’s right—a faithful replica of the iconic convenience store for all your raiding snack needs. Fuel Depot: An abandoned facility located in the snow biome, featuring a working Pumpjack and a Green Card puzzle. Rose Hill Development: An unfinished construction site offering unique verticality and parkour opportunities. Green Houses: Small botanical structures perfect for picking up plants and quick loot. Map Size 4500 Prefab Count #38450   🏛️ Facepunch Monuments Launch Site Arctic Research Large Oil Rig Small Oil Rig Military Tunnel Giant Excavator Airfield Trainyard Artic Research Ferry Terminal RadTown Jungle Ziggurat Large Harbor Small Harbor Bandit Camp Outpost The Dome Sewer Brach LightHouse Oxum's Gas Station x3 Mining Outpost x3 Ranch Abandoned SuperMarket x2 large Barn Fishing Village x2 Large Fishing Village Stone, Sulfer, & HqM Quarries Water Wells x3 Abandoned Cabins Custom Monuments Theme Park Island Black Rock Pine Bluff Fuel Depot 2 Gorges Dam 7-11 Sewage Treament Plant Fort Sentinel Heli Tower V2 Large Mod/Staff Room Mills Trailer Park Rose Hill Development Outpost Addition The 2 Cities Black Rock and Pine Bluff Include these monuments as a part of them Black Rock Medical Silents SuperMarket McDonalds Lazarus Automotive     🙏 Acknowledgements A massive thank you to those who helped bring this project to life: Substrata: For the incredible work on the custom rollercoaster plugin. Milky: For the stellar work on the promotional video. MrLiquid & the Luffy Map Testing Team: For their dedication to polishing and balancing the map.   For any Assistance or questions Please contact me on Discord @ https://discord.gg/THf6dGN8eW
5.0
sale
About my new 120 Raidable bases by JaaaaaThomas 08.06.2026 June Pack Hello everyone, I’m excited to present a brand new base pack! I’ve put a lot of hard work into this project and I hope you’ll appreciate the quality. In fact, we are already working on the next one! This pack includes 120 completely new, raid-ready bases. You will find 20 unique designs for every difficulty level, from Easy all the way up to Clan Bases. I hope you enjoy these builds! If you’re satisfied, please leave a positive review—it helps a lot. Also, if you have any suggestions for future updates, feel free to leave a comment below! Thank you!"  Important Reminder This is a Base Model Pack (.json files). It is NOT the Raidable Bases plugin script. These are the blueprints crafted by our professional building team.  Level Up Your Server Don't settle for basic cubes. Give your players a challenge they’ll never forget. Whether you're looking for a "Hardcore" event or a permanent fortress for your top clan, these 120 new bases are built to dominate. [ Buy Now & Start Building] This package includes the following packages from the list:  
0.0
Gather & loot rates Rates that belong to the player, not to the server Server-wide multipliers give everyone the same wipe. This plugin attaches rates to permissions instead: a default tier, a VIP tier, as many tiers as you sell. Every gather source is covered — nodes, quarries, the excavator, the metal detector, farming, tea, even NPC corpses — and every loot container is multiplied per item category, or per exact item. All of it edited in a UI, applied the moment you type the number. 14 Item categories, each with its own rate 7 Production sources with their own multiplier 4 Fields on every per-item override 0 Dependencies ✓ Unlimited permission tiers — a different wipe for every rank you sell ✓ Every source, not just trees and nodes — quarries, excavator, metal detector, farming, tea, NPC corpses ✓ Guaranteed drops per item — "always 5 scrap, 10% chance of 20" without touching a loot table ✓ Loot and junk pile respawn speed — separately, live, no map restart ✓ Edited in-game — type a number, it's live and saved   01 — Tiers One server, as many rate sets as you sell A tier is a permission plus a full set of rates. Two come preconfigured — a 2x/3x default and a 3x/5x VIP — and you add as many as your shop needs. No permission, no change Players outside every tier play vanilla rates, untouched. Nothing is applied server-wide, so you can run the plugin on a 1x server and sell 2x as a rank. Stack tiers, or don't By default a player with several tiers gets one of them. Flip a single switch and every rate they hold is summed instead — so a booster permission can add on top of a rank rather than replace it. Everything from one screen Page through your tiers with two arrows. Global rates, every production source, all 14 categories and the per-item list are on the same screen, each an input field. Type a value and it's active and written to the config — no reload, no o.reload, no file editing.   02 — Loot Containers that pay what you decide Barrels, crates, elite crates, hackable crates, supply drops — anything with loot in it goes through a global rate multiplied by the rate of that item's category. 14 categories, 14 dials Triple the components but leave weapons alone. Halve ammunition while resources stay at 5x. Weapons, construction, items, resources, attire, tools, medical, food, ammunition, traps, misc, components, electrical and fun each carry their own multiplier on top of the global one. NPC corpses count the killer Scientists, tunnel dwellers and every other NPC drop loot scaled to the rates of whoever killed them — tracked from the kill to the corpse, so a VIP's kill pays VIP rates even if someone else opens the body. Shot open or opened by hand Barrels broken with a rock and crates opened normally both go through the same multipliers, credited to the player who did it — and each container is processed exactly once, never twice. Respawn speed, live Two multipliers — one for junk piles, one for crates and barrels — and the world's spawn timers are rebuilt the moment you change them. No wipe, no restart, and the vanilla values are put back when the plugin unloads. An exclusion list for the things you don't touch Name a container prefab and it stays vanilla — useful for event crates and custom loot that another plugin already fills.   03 — Gathering Every way a player earns a resource Most rate plugins stop at trees and ore. This one follows the resource wherever it comes from, and gives the slow, expensive sources their own multiplier on top. Nodes, trees and the finishing bonus Every hit, the bonus for finishing a node, and the leftovers that spill when it breaks — all three are scaled, so the numbers stay consistent instead of the bonus quietly staying at 1x. Quarries and the excavator pay their operator A mining quarry, a survey-charge pump jack and the Giant Excavator each have their own production multiplier — and the output is scaled by the rates of the player who switched it on, not by a server-wide number. Jackhammer, chainsaw and the metal detector Power tools get a multiplier of their own, so you can make them worth their fuel — or deliberately not. Metal-detector digs are boosted too, which almost nothing else covers. Tea strength as a rate The tea multiplier scales the effect value of the tea itself, not the number of leaves. A VIP's ore tea simply works harder than everyone else's. Farming and hand-picked resources Harvested plants and everything picked up off the ground — hemp, mushrooms, corn, wood piles — run through the same rates as everything else.   04 — Per item One item out of step with the rest Category rates handle the broad strokes. When a single item needs its own rule, it overrides everything above it. Its own multiplier, ignoring everything else Run resources at 10x and keep sulfur at 2x. An item with an override takes its own number and nothing else — no compounding surprises. Guaranteed amounts with a jackpot chance For loot, set a minimum and a maximum with a percentage chance for the big one. Every barrel gives exactly 5 scrap, and 10% of them give 20 — a flat, predictable economy you can actually price your shop against. Added by clicking an icon The picker filters by all 15 categories and searches display names and shortnames as you type. Click an item to add it, type its rate under the icon, click the red cross to drop it. Long lists paginate at 29 per page.   Reliability Built to be left alone ✓ No dependencies — nothing to install alongside it ✓ Vanilla respawn timings are restored on unload — the plugin remembers what they were before it touched them ✓ Every UI change is written to the config immediately — a crash can't lose the tier you just built ✓ A bad shortname tells you in chat instead of failing silently or throwing errors into console ✓ Respawn boosting is opt-in — off by default, with the safe range stated in the config   Command & permissions One command, and the tiers you invent The command name and the setup permission are both configurable. Admins have access regardless. /rs Open the rate editor gatherlootmultiplier.setup Access to the editor gatherlootmultiplier.default Preconfigured tier — 2x loot, 3x gather gatherlootmultiplier.vip Preconfigured tier — 3x loot, 5x gather. Rename both, or add ten more   Questions Before you buy What happens to players with no permission? Nothing at all — they get vanilla rates. That's the point: grant the default tier to the default group for a server-wide rate, or keep it for ranks only. A player has two tiers. Which one wins? The one further down the config list — so keep your tiers in ascending order and the highest rank ends up last. Alternatively, turn on rate summing and every tier they hold is added together instead. Do I have to restart or reload after changing a rate? No. Values from the UI take effect immediately and are saved to the config as you type them. Even loot respawn timing is rebuilt live. Whose rates apply to a quarry or the excavator? The player who switched it on. A VIP's quarry produces at VIP rates while it runs. Can I make a resource drop a fixed amount instead of a multiplied one? Yes, for loot: give the item a minimum, an optional maximum and a chance for the maximum. The multiplier is then ignored for that item and the amount is rolled between the two. Is faster loot respawn safe for my server? It's off by default and it scales the game's own spawn timings rather than spawning extra entities. Stay near the suggested values — extremely low numbers mean more entities alive at once, which costs frames on any server. Will it fight with my other loot plugin? Add that plugin's container prefabs to the ignore list and they pass through untouched.
5.0
sale
$24.99 $19.99
Advanced Apartment transforms Rust official apartment system into a complete room progression experience while preserving the look and feel of the original game. Players interact with the existing apartment concierge to rent a room, check their room number, manage rent, move to a larger apartment, purchase upgrades, and manage apartment access. No additional NPCs, player commands, or external dependencies are required. Apartment Upgrades Every apartment tier has its own upgrade selection based on its available space and intended progression. Take Your Rust Server to the Next Level Premium performance, lightning-fast support, and an exclusive 30% OFF using code KHALED Basement Industrial Wall Shelves Two integrated Wooden Storage Boxes Furnace replacement for the original storage box Workbench Level 2 and Level 3 Standard Salvaged Industrial Shelves fitted around the original furniture Up to three permanently powered Electric Furnaces Recycler Workbench Level 2 and Level 3 Penthouse Research Table Mixing Table Recycler Up to four permanently powered Electric Furnaces Workbench Level 2 and Level 3 Upgrade availability is automatically filtered by apartment type. Players only see upgrades that are compatible with their current room. Integrated Rental System The plugin takes control of the official apartment workflow without replacing the original apartment building or concierge. Apartment Access: Apartment owners can authorize additional players directly from the upkeep interface. Authorized players can access the apartment, and optional guest sleeping bags are created for them using the player’s name. Access slots are configurable per apartment tier, allowing server owners to control how many additional players can share each apartment type. Players can: Rent any available apartment View their current room number Check daily upkeep information Purchase room upgrades Move to a larger apartment tier Check out and release their apartment Manage apartment access Authorize other players to use their apartment Provide guest sleeping bags for authorized players   Configured purchase and upkeep prices are displayed directly in the conversation, ensuring the amount shown to the player always matches the actual amount charged. When moving to a different apartment tier, stored items are transferred safely while upgrades from the previous room are removed because each apartment layout uses different placements and available space. Fully Configurable Server owners can configure: Apartment purchase prices Daily upkeep costs Individual upgrade prices Upgrade availability Required permissions VIP access Apartment access slots Guest sleeping bags Shop prices Security camera price Master key price and cooldown Concierge text and interaction range   Every upgrade and optional feature can be enabled or disabled separately. Disabled options are automatically removed from the interface. Reliable Placement and Persistence All upgrade positions are built directly into the plugin and calculated relative to the apartment itself. They do not depend on world coordinates or editable data files. This allows apartment buildings to be placed in different locations or rotations across map wipes while keeping every upgrade correctly positioned inside its room. Player purchases and access data are stored automatically and restored after: Server restarts Plugin reloads Entity reloads The plugin also detects expired or changed apartment leases and removes outdated records safely. Advanced Apartment delivers a natural extension to Rust’s apartment system, giving players meaningful room progression while giving server owners full control over pricing, upgrades, access, and apartment-related services.
5.0
$27.00
🗺️ Brutal BATTLE PLANET • high-performance 3.8K map • 8,500 prefabs Hand-crafted, real-world Earth map featuring every major landmass and both polar regions. The entire globe is connected by a network of sea bridges and zip-towers, letting players travel between continents without boats or helis. Popular monuments placed in appropriate locations, leaving pristine shoreline, vast interiors, and remote wilderness for building. A continental ring road runs through Eurasia and into Africa, while a transcontinental railway loops across to the Americas and back - perfect for high-speed chases and train raids. Low object count keeps map clean, giving you plenty of room to add your favorite custom prefabs. "Practically a planet - any day now!" Features infamous frozen red-card nightmare 'Ice Station Unicorn' buried deep under Greenland. Deep psychological fear, radiation, disorientation and maximum bi-polar bears. Bring friends along to help feed them. ⚠ 100% TESTED on live humans. • Handy global zip-tower network to glide about on.  • Four central safe zones on the friendly zipline route.  • Road/railway supports 'Convoy' & 'Armoured Train' mods.  • Many desirable buildable areas on the shore or inland.  ⚠ Required dependencies: Umod/Oxide and Rustedit DLL.  Any problems? Please advise.     -- Nomad        LOST in RUST https://discord.gg/THf6dGN8eW 
0.0
Highest Rated
Top-rated picks trusted and loved by the community.
Great Deals
Discounted picks, limited-time deals, and sale items worth grabbing now.
Recently Updated
Recently improved files with fresh updates, fixes, and new content.
Latest Reviews
See what customers are saying about their experience with files.
Didn't really think it through, or couldn't get the AI right. Items are now being placed in the hammer storage space, too. Super annoying.
Super plugin, je vous la recommande Le DEV Répond vite. Super boulot.
I am so happy I bought this mod it makes life so much easier with the built in permissions, live console and ConVars and well organized worth every penny would definitely buy again if I ever needed would put more stars if possible
I'm super happy with this plugin as it both looks and feels really like the games UI. There was a small issue with how items were loaded into the apartments, but after contacting Khaled and discussing it he fixed this in the next patch which I really appriciate!  Plugin is very customisable which is perfect, I can control what can be added as upgrades to each tier and adjust everything for the costs. Super happy, a well made plugin that feels like a good & original extension for Apart
This plugin is fantastic. It works great, and adds a sense of humor to the chat. It is definitely NOT an AI plugin. Codefling needs to remove that.
"For fans of the franchise, you will not be disappointed. Full stop." For server owners with a player base that truly appreciates thought out prefabs to build in? You will not be disappointed either! (It was a huge hit with mine.) Fully supports BetterNPC, even includes 'Troopers!  "Truly a 5 Star Map." NOTE: Puzzle doors may require more than one fuse box to be filled in order to function.   😉

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
2.8m
Total downloads
Customers
11.7k
Customers served
Files Sold
166.9k
Total sales
Payments
3.6m
Processed total
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.