Jump to content

Search the Community

Showing results for tags 'oxide'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Landing Zone
    • Announcements
    • Giveaways
    • Polls
  • Existing Assets Discussions
    • Maps
    • Prefabs
    • Monuments
    • Plugins
  • Suggestions
    • Website Suggestions
    • Map Suggestions
    • Prefabs Suggestions
    • Monument Suggestions
    • Plugins Suggestions
  • Requests
    • Map requests
    • Prefabs Requests
    • Monuments Requests
    • Plugins Requests

Categories

  • Maps
  • Prefabs
  • Monuments
  • Plugins
  • Tools
  • Templates

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


PayPal


Patreon


Revolut

  1. View File Group Link (oxide group parenting) About GroupLink (oxide group parenting) GroupLink is a lightweight Rust plugin designed for the Oxide modding framework, created to manage group relationships between leader (parent) groups and their associated subgroups. Its primary function is to automatically remove players from specified subgroups when they are no longer part of their corresponding leader group, ensuring that subgroup permissions are tied to leader group membership. This is particularly useful for servers using timed or subscription-based group systems, such as those managed by the TimedPermissions plugin. When a player loses membership in a leader group (either through manual removal or expiration via TimedPermissions), GroupLink checks for and removes them from all linked subgroups defined in its configuration. Upon each subgroup removal, it sends a private, customizable chat message to the affected player, informing them of the change. The plugin uses a periodic check system to ensure compatibility with external group management plugins, making it efficient with minimal server performance impact. Key features: Automatically removes players from subgroups when their leader group membership ends Sends private, styled chat messages (configurable size and color) to affected players Lightweight design with deferred operations using NextTick to reduce resource usage Configurable leader groups, subgroups, message format, and check interval Admin commands for testing and debugging group status Configuration Explanation The plugin generates a configuration file named GroupLink in the oxide/config directory. Below is the default configuration with an explanation of each field: json { "LeaderGroups": [ "vipplus", "mvp", "fanatic" ], "SubGroups": { "vipplus": [ "cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial" ], "mvp": [ "bmvpbuilders", "bmvpfarmers", "bmvpindustrial" ], "fanatic": [ "afanaticbuilders", "afanaticfarmers", "afanaticindustrial" ] }, "MessageFormat": "{0} you have left group {1} as your {2} subscription has ended", "MessageSize": 24, "MessageColor": "green", "CheckInterval": 60.0 } LeaderGroups: An array of strings listing the parent group names (e.g., "vipplus", "mvp", "fanatic"). These are the primary groups that, when removed from a player, trigger subgroup removal. SubGroups: A dictionary mapping each leader group to an array of its associated subgroups. For example, "vipplus" is linked to "cvipplusbuilders", "cvipplusfarmers", and "cvipplusindustrial". When a player loses the leader group, they are removed from all listed subgroups. MessageFormat: A string defining the chat message sent to players upon subgroup removal. It uses indexed placeholders: {0}: Player's username {1}: Subgroup name {2}: Leader group name Example output: "UrbanViking you have left group bmvpbuilders as your mvp subscription has ended" MessageSize: An integer setting the font size of the chat message (default: 24). MessageColor: A string defining the color of the chat message in HTML color format (default: "green"). Can be changed to other colors like "red", "#FF0000", etc. CheckInterval: A float specifying how often (in seconds) the plugin checks all connected players for leader group status (default: 60.0). Adjust this to balance responsiveness and server load. Adding/Removing Groups from the Config To modify the groups in the config, edit oxide/config/GroupLink.json and reload the plugin using oxide.reload GroupLink or /grouplink reload. Here's how to add or remove groups: Adding a New Leader Group and Subgroups Open GroupLink.json. In the "LeaderGroups" array, add the new leader group name: json "LeaderGroups": [ "vipplus", "mvp", "fanatic", "elite" // Added new leader group ] In the "SubGroups" dictionary, add a new entry for the leader group with its subgroups: json "SubGroups": { "vipplus": ["cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial"], "mvp": ["bmvpbuilders", "bmvpfarmers", "bmvpindustrial"], "fanatic": ["afanaticbuilders", "afanaticfarmers", "afanaticindustrial"], "elite": ["elitebuilders", "elitefarmers", "eliteindustrial"] // Added subgroups for "elite" } Save the file and reload the plugin. Removing a Leader Group and Its Subgroups Open GroupLink.json. In the "LeaderGroups" array, remove the leader group name: "LeaderGroups": [ "vipplus", "fanatic" // Removed "mvp" ] In the "SubGroups" dictionary, remove the corresponding entry: "SubGroups": { "vipplus": ["cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial"], "fanatic": ["afanaticbuilders", "afanaticfarmers", "afanaticindustrial"] // Removed "mvp" entry } Save the file and reload the plugin. Adding/Removing Subgroups for an Existing Leader Group To add a subgroup, append it to the array under the leader group in "SubGroups": "mvp": ["bmvpbuilders", "bmvpfarmers", "bmvpindustrial", "mvpraiders"] // Added "mvpraiders" To remove a subgroup, delete it from the array: "mvp": ["bmvpbuilders", "bmvpfarmers"] // Removed "bmvpindustrial" Save and reload the plugin. Hooks Needed by Other Plugins GroupLink uses the following Oxide hook, which other plugins might need to interact with or be aware of: OnUserGroupRemoved(BasePlayer player, string group): Called when a player is removed from a group via Oxide's permission system. GroupLink uses this as a fallback to catch manual group removals, though its primary mechanism is a periodic check for TimedPermissions compatibility. Other plugins can call this hook to trigger GroupLink's removal logic if they remove players from leader groups manually. Submitter urbanviking21 Submitted 04/20/2025 Category Plugins  
  2. Version 1.0.0

    1 download

    About GroupLink (oxide group parenting) GroupLink is a lightweight Rust plugin designed for the Oxide modding framework, created to manage group relationships between leader (parent) groups and their associated subgroups. Its primary function is to automatically remove players from specified subgroups when they are no longer part of their corresponding leader group, ensuring that subgroup permissions are tied to leader group membership. This is particularly useful for servers using timed or subscription-based group systems, such as those managed by the TimedPermissions plugin. When a player loses membership in a leader group (either through manual removal or expiration via TimedPermissions), GroupLink checks for and removes them from all linked subgroups defined in its configuration. Upon each subgroup removal, it sends a private, customizable chat message to the affected player, informing them of the change. The plugin uses a periodic check system to ensure compatibility with external group management plugins, making it efficient with minimal server performance impact. Key features: Automatically removes players from subgroups when their leader group membership ends Sends private, styled chat messages (configurable size and color) to affected players Lightweight design with deferred operations using NextTick to reduce resource usage Configurable leader groups, subgroups, message format, and check interval Admin commands for testing and debugging group status Configuration Explanation The plugin generates a configuration file named GroupLink in the oxide/config directory. Below is the default configuration with an explanation of each field: json { "LeaderGroups": [ "vipplus", "mvp", "fanatic" ], "SubGroups": { "vipplus": [ "cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial" ], "mvp": [ "bmvpbuilders", "bmvpfarmers", "bmvpindustrial" ], "fanatic": [ "afanaticbuilders", "afanaticfarmers", "afanaticindustrial" ] }, "MessageFormat": "{0} you have left group {1} as your {2} subscription has ended", "MessageSize": 24, "MessageColor": "green", "CheckInterval": 60.0 } LeaderGroups: An array of strings listing the parent group names (e.g., "vipplus", "mvp", "fanatic"). These are the primary groups that, when removed from a player, trigger subgroup removal. SubGroups: A dictionary mapping each leader group to an array of its associated subgroups. For example, "vipplus" is linked to "cvipplusbuilders", "cvipplusfarmers", and "cvipplusindustrial". When a player loses the leader group, they are removed from all listed subgroups. MessageFormat: A string defining the chat message sent to players upon subgroup removal. It uses indexed placeholders: {0}: Player's username {1}: Subgroup name {2}: Leader group name Example output: "UrbanViking you have left group bmvpbuilders as your mvp subscription has ended" MessageSize: An integer setting the font size of the chat message (default: 24). MessageColor: A string defining the color of the chat message in HTML color format (default: "green"). Can be changed to other colors like "red", "#FF0000", etc. CheckInterval: A float specifying how often (in seconds) the plugin checks all connected players for leader group status (default: 60.0). Adjust this to balance responsiveness and server load. Adding/Removing Groups from the Config To modify the groups in the config, edit oxide/config/GroupLink.json and reload the plugin using oxide.reload GroupLink or /grouplink reload. Here's how to add or remove groups: Adding a New Leader Group and Subgroups Open GroupLink.json. In the "LeaderGroups" array, add the new leader group name: json "LeaderGroups": [ "vipplus", "mvp", "fanatic", "elite" // Added new leader group ] In the "SubGroups" dictionary, add a new entry for the leader group with its subgroups: json "SubGroups": { "vipplus": ["cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial"], "mvp": ["bmvpbuilders", "bmvpfarmers", "bmvpindustrial"], "fanatic": ["afanaticbuilders", "afanaticfarmers", "afanaticindustrial"], "elite": ["elitebuilders", "elitefarmers", "eliteindustrial"] // Added subgroups for "elite" } Save the file and reload the plugin. Removing a Leader Group and Its Subgroups Open GroupLink.json. In the "LeaderGroups" array, remove the leader group name: "LeaderGroups": [ "vipplus", "fanatic" // Removed "mvp" ] In the "SubGroups" dictionary, remove the corresponding entry: "SubGroups": { "vipplus": ["cvipplusbuilders", "cvipplusfarmers", "cvipplusindustrial"], "fanatic": ["afanaticbuilders", "afanaticfarmers", "afanaticindustrial"] // Removed "mvp" entry } Save the file and reload the plugin. Adding/Removing Subgroups for an Existing Leader Group To add a subgroup, append it to the array under the leader group in "SubGroups": "mvp": ["bmvpbuilders", "bmvpfarmers", "bmvpindustrial", "mvpraiders"] // Added "mvpraiders" To remove a subgroup, delete it from the array: "mvp": ["bmvpbuilders", "bmvpfarmers"] // Removed "bmvpindustrial" Save and reload the plugin. Hooks Needed by Other Plugins GroupLink uses the following Oxide hook, which other plugins might need to interact with or be aware of: OnUserGroupRemoved(BasePlayer player, string group): Called when a player is removed from a group via Oxide's permission system. GroupLink uses this as a fallback to catch manual group removals, though its primary mechanism is a periodic check for TimedPermissions compatibility. Other plugins can call this hook to trigger GroupLink's removal logic if they remove players from leader groups manually.
    $5
  3. Version V1.1

    2 downloads

    Introducing Devils Fortress, a multi-tier loot monument that includes all 3 standard puzzles, green, blue and red keycards, also includes custom puzzles with descriptive instructions. Bradley APC patrols the island, both upper and lower roads, NPC scientists guarding and protecting the fortress, where you will find from starter loot to end-game loot, and some extra areas to explore. The Chinook helicopter can also drop an additional locked crate on the dock area for players to hack and loot. Here are some key features of Devils Fortress: CCTV cameras to view and monitor the Fortress, use FORTXX. (Where XX is ranged from 01 to 25) NPC Scientists in multiple areas inside the Fortress. Bradley APC patrols the roads around the Fortress. Keycards spawning desks and multiple custom puzzles to solve as players progress. Locked crate located in the second RED keycard room. Realistic beach designs, now with cliffs/rocks leading into water. Day/Night cycle light system in the compound. About 2400 prefabs in total. Included is Height, Splat, Alpha, Road and Topology filters that can be applied as required during installation. This monument is a great replacement for Launch site, or a great additional add-on. Sewer Tunnels have been extended to allow multiple entrance/exit routes. Road system has been extended to the upper and lower part of the monument, with Bradley APC covering the entire road. Installation: When placing Devils Fortress, use the MAX WATER LEVEL at the Docks for reference on the ocean level, and please remember to remove all previous roads/APC path spawns before you apply the "Spawn Roads" feature. (Failure to do this may cause more than one Bradley APC to spawn and could impact server performance greatly.) Requirements: Devils Fortress requires either of the following for the spawning of loot, NPC, APC and all puzzles to be active : Either latest versions of Oxide and the Oxide.Ext.RustEdit.dll file in the servers Rust_Dedicated\Managed folder.
    $7.99
  4. BADGYVER

    Andalusia

    Version 1.1.5

    1 download

    Andalusia Custom Map for Rust, containing a wide variety of custom prefabs, terrains and real rivers of Andalusia. - Description: • Andalusia is a map with all the main rivers of Andalusia (Spain). • It contains the terrain, topology and real biome of Andalusia (Spain). • Size: 6000. • Objects: 88779. • Map protection plugin included. • The map can be edited: Yes. - Contains all Official Monuments: • Ferry Terminal • Nuclear missile silo • Large oil platform (This monument contains an access to the subway, you can reach this monument from the train) • Small oil platform (This monument contains an access to the subway, you can reach this monument from the train) • Submarine laboratories • Harbor • Large fishing villages • Fishing villages • Launch site (Customized, with a monorail surrounding this monument, it also contains: Ziplines, a small store, customized loot, npcs and a tug on which you will find a red card respawn) • Satellite dish (Customized, with attack helicopter respawn, recycler, custom loot, npcs and a small resting place) • The Dome • HQM Quarry • Stone quarry • Sulfur quarry • Arctic Research Base • Sewer Branch • Train yard • Junkyard • Abandoned military bases • Military tunnel • Caves • Large barns • Ranch • Bandit camp • Power plant • Swamp • Airfield (Customized, contains platforms with cranes, custom loot and npcs. Several zip lines with which you can cross the entire Aerodrome, in addition to a tank that guards this site) • Giant excavation • Outpost • Lighthouse - Prefabs and custom monuments: • Zeppelin (Puzzle-parkour). • Ghostbusters Barracks, this is a faithful monument to the fire station used by the ghostbusters, contains puzzles, traps, loot, npc, ghostbusters logo. • Civil Guard Barracks, a construction zone for the server administrator. This monument-zone contains helicopter respawns and loot. • Arena, zone with loots, defenses, towers, barricades and crate with code, everything you need for your server to contain a PVP zone. You can also use this zone for other things. • Bank, a monument created for the Bank Heist plugin. If you do not have this plugin, you can use this monument for the player to search for resources. • Aircraft carrier, the aircraft carrier has been created especially for the Biplane plugin, you can also use it as a monument, it contains helicopters, loot and NPCs. • Inferno Arena, is a battlefield with traps, death and fire. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Aerial platforms, each aerial platform contains several platforms connected to each other. • Epic Tower Construction Zone for players. • Train tracks scattered all over the map, carefully designed. • City, with collapsed skyscrapers. • Custom Oil plataform, with four oil platforms, two small and two large. (This monument contains an access to the subway, you can reach this monument from the train). • The Arecibo Observatory, also known as the National Astronomy and Ionosphere Center (NAIC) and formerly known as the Arecibo Ionosphere Observatory, is an observatory in Barrio Esperanza, Arecibo, Puerto Rico owned by the US National Science Foundation (NSF). • H1Z1 Lab is an experimental laboratory with various puzzles to solve. It contains Zombies, NPC, traps, puzzles and an original crystal box in which you will get two hackable oil rig crates, plus extra loot of elite crates. • Underwater glass dome, the player will be able to build underwater. • A variety of custom sites for the player to build, you can find these sites easily from the map, they are marked with an X mark. • Customized rivers navigable with motorboats. • Access by train to all the Oil Shelf Plaforms. - Monuments will be added to recreate-simulate Andalusia (Spain).
    $39.90
  5. BADGYVER

    RATS

    Version 1.1.6

    0 downloads

    TEST THE MAP I've detected that an important percentage of users use the test server to download and copy the map instead of just trying it to determine if they like it. Unfortunately, I do not have enough time or energy to solve this big issue in ways other than closing the server. Sorry for the inconvenience, best regards - BADGYVER - FEATURES • Size: 3000. • Objects: 101245. • Map protection plugin included. • The map can be edited: Yes. - CONTAINS ALL OFFICIAL MONUMENTS • Ferry Terminal • Nuclear missile silo • Large oil platform • Small oil platform • Submarine laboratories • Harbor • Large fishing villages • Fishing villages • Launch site • Satellite dish • The Dome • HQM Quarry • Stone quarry • Sulfur quarry • Arctic Research Base • Sewer Branch • Train yard • Junkyard • Abandoned military bases • Military tunnel • Caves • Large barns • Ranch • Bandit camp • Power plant • Swamp • Airfield • Giant excavation • Outpost • Lighthouse - PREFABS AND CUSTOM MONUMENTS • Zeppelin (Puzzle-parkour). • Ghostbusters Barracks, this is a faithful monument to the fire station used by the ghostbusters, contains puzzles, traps, loot, npc, ghostbusters logo. • Civil Guard Barracks, a construction zone for the server administrator. This monument-zone contains helicopter respawns and loot. • Camping, it contains tents and inside you will find loot, the land is surrounded by a kind of Creepers. • Snowball, this large glass dome contains two floors to build, plus on the top floor you will find resources. • Cargo Ship model, full of loot, but watch your step sailor because you will find enemies on board. • Zone for events, a huge space rocket with two floors, on the second floor you can use the Zone Manager plugin to place an event or if you prefer you can use this area for the Raideable Bases plugin. On the second floor players can build, also on this second floor you will find several helicopter respawns. • Crafting areas, these areas are scattered throughout the map, you will find these areas easily, they are marked with a star. • Cake, a huge and delicious chocolate cake, inside you will find a not very pleasant surprise. • Lamps, there are 4 lamps on the map, two are located on the roof (one you will find on the roof, in the center of the map, it contains: Loots, NPCS and a tank), the other lamps you will have to find them, in these three remaining lamps you will be able to build your house. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Mars Attack Arena, an impressive flying saucer, inspired by the movie Mars Attacks, this huge monument is surrounded by multiple fighter planes, inside you will find two floors with a sci-fi style. Use this monument to create an Arena for your players to fight each other. • Fishbowl, a huge aquatic area, contains a great variety of fish, in this area you will find the laboratory among other things. • Pots, in the upper part you will find resources, in the lower part you can build your house. • Trash garbage can, if you need resources this will be a good place to collect them. • Zeppelin with dish, if you need a place far away from your enemies this is a good option to build your house, besides it is located in the air. • Underwater Domes, large spheres located in various places on the map, use these cupolas to build your house. "In RATS you will find many hidden areas that have not been mentioned, so equip yourself and explore this great miniature adventure" - TIPS • Climb through walls, furniture and ceilings. • Take advantage of any area with total freedom to build your home. • Have fun 🙂
    $42.90
  6. View File BullRing - Arena BullRing Arena is a battlefield where your players can fight battles. With a Spanish style, this Arena represents a Bullring. I almost forgot, this time your players will be the victims, the Bull will be the spectator. Don't be horrified, it's just “Art and Culture”. - INCLUDES: Loots Locked Crates Elite Crates Tramps NPC Respawn Horse Respawns Image Posters - TIPS: Enjoy 🙂 Submitter BADGYVER Submitted 07/20/2024 Category Monuments  
  7. Version 1.0.0

    0 downloads

    BullRing Arena is a battlefield where your players can fight battles. With a Spanish style, this Arena represents a Bullring. I almost forgot, this time your players will be the victims, the Bull will be the spectator. Don't be horrified, it's just “Art and Culture”. - INCLUDES: Loots Locked Crates Elite Crates Tramps NPC Respawn Horse Respawns Image Posters - TIPS: Enjoy 🙂
    $12.90
  8. Version 1.0.0

    0 downloads

    Mazinger Z (Head), the robot that made a generation of children dream now available for Rust. Mazinger Z's head is wrapped in a collector's box. "Do you dare to discover its interior?" - CONTAINS: Maze Parkour Puzzle Loot Room NPCs - TIPS: Measure your steps with caution or you will meet your death. Have fun 🙂
    $14.90
  9. View File Mazinger Z - Head Mazinger Z (Head), the robot that made a generation of children dream now available for Rust. Mazinger Z's head is wrapped in a collector's box. "Do you dare to discover its interior?" - CONTAINS: Maze Parkour Puzzle Loot Room NPCs - TIPS: Measure your steps with caution or you will meet your death. Have fun :) Submitter BADGYVER Submitted 09/07/24 Category Monuments  
  10. BADGYVER

    RATS

    View File RATS TEST THE MAP I've detected that an important percentage of users use the test server to download and copy the map instead of just trying it to determine if they like it. Unfortunately, I do not have enough time or energy to solve this big issue in ways other than closing the server. Sorry for the inconvenience, best regards - BADGYVER - FEATURES • Size: 3000. • Objects: 101245. • Map protection plugin included. • The map can be edited: Yes. - CONTAINS ALL OFFICIAL MONUMENTS • Ferry Terminal • Nuclear missile silo • Large oil platform • Small oil platform • Submarine laboratories • Harbor • Large fishing villages • Fishing villages • Launch site • Satellite dish • The Dome • HQM Quarry • Stone quarry • Sulfur quarry • Arctic Research Base • Sewer Branch • Train yard • Junkyard • Abandoned military bases • Military tunnel • Caves • Large barns • Ranch • Bandit camp • Power plant • Swamp • Airfield • Giant excavation • Outpost • Lighthouse - PREFABS AND CUSTOM MONUMENTS • Zeppelin (Puzzle-parkour). • Ghostbusters Barracks, this is a faithful monument to the fire station used by the ghostbusters, contains puzzles, traps, loot, npc, ghostbusters logo. • Civil Guard Barracks, a construction zone for the server administrator. This monument-zone contains helicopter respawns and loot. • Camping, it contains tents and inside you will find loot, the land is surrounded by a kind of Creepers. • Snowball, this large glass dome contains two floors to build, plus on the top floor you will find resources. • Cargo Ship model, full of loot, but watch your step sailor because you will find enemies on board. • Zone for events, a huge space rocket with two floors, on the second floor you can use the Zone Manager plugin to place an event or if you prefer you can use this area for the Raideable Bases plugin. On the second floor players can build, also on this second floor you will find several helicopter respawns. • Crafting areas, these areas are scattered throughout the map, you will find these areas easily, they are marked with a star. • Cake, a huge and delicious chocolate cake, inside you will find a not very pleasant surprise. • Lamps, there are 4 lamps on the map, two are located on the roof (one you will find on the roof, in the center of the map, it contains: Loots, NPCS and a tank), the other lamps you will have to find them, in these three remaining lamps you will be able to build your house. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Mars Attack Arena, an impressive flying saucer, inspired by the movie Mars Attacks, this huge monument is surrounded by multiple fighter planes, inside you will find two floors with a sci-fi style. Use this monument to create an Arena for your players to fight each other. • Fishbowl, a huge aquatic area, contains a great variety of fish, in this area you will find the laboratory among other things. • Pots, in the upper part you will find resources, in the lower part you can build your house. • Trash garbage can, if you need resources this will be a good place to collect them. • Zeppelin with dish, if you need a place far away from your enemies this is a good option to build your house, besides it is located in the air. • Underwater Domes, large spheres located in various places on the map, use these cupolas to build your house. "In RATS you will find many hidden areas that have not been mentioned, so equip yourself and explore this great miniature adventure" - TIPS • Climb through walls, furniture and ceilings. • Take advantage of any area with total freedom to build your home. • Have fun 🙂 Submitter BADGYVER Submitted 22/06/24 Category Mapas  
  11. Shiro

    Hydrae Oxide

    View File Hydrae Oxide Hydrae Oxide 4K is our second free map project that i started in november featuring custom monuments and prefabs from our vendors , unfortunately back then we were not able to release it due to issues with Linux servers hosting this map , so i had to redo whole map from 0 after my medical break! Finally i picked up the project again in February and worked on it every x days when i found time and now it is here ! Featuring monuments and prefabs , freebies from our vendors! Map has unique landscape and base building opportunities , unique roadside loot locations and a large railway network system connecting all monuments together to ensure a pleasant experience for the players while enjoying your server/s! You and your players will find exquisite monuments and easter eggs in those monuments which will make you giggle for sure! Around the main island there are a couple small islands scattered for the hermits who want to build far from the others and have no neighbours. Map is optimized for low entity count and proper terrain to ensure rendering is not a problem no matter the PC specs! The map features custom and procedural monuments Big thanks to @Abracadaverfor helping me with the electrics problem we had before publishing! Our featured files on this map are from @Niko@Ixis @LAMBO7000 @Kahoand @38-Ra for his jetfighter and of course me . Password is NOT included! The map is just for personal use for your servers just like The Oxide map our first Free map project! Put HydraeMapLock in oxide/plugins or else your server will not start! ~Procedural Monuments : - Launch Site - Excavator - Military Tunnels - Airfield - Power Plant - Water Treatment Plant - Trainyard - Sewerbranch - Harbor - Junkyard - Sphere Tank - Satellite Dish x2 - Desert Military Base - Roadside monuments including Supermarkets - Mining Outposts - Fishing Villages - Lighthouses - Stables - Supermarkets & Mining Outposts and Gas Stations - Large and Small Oil Rigs - Several underwater Labs ~ Custom Monuments & Prefabs: - Museum Heist Monument - Area 52 Monument - Farm Monument - FckboyShed - Bandit Swamp - Winter Cabin - Ranger Lookout - Offshore Bunker ~ Entity Count : 32058 ~ Map Size : 4000. Submitter Shiro Submitted 04/03/2022 Category Maps  
  12. View File Mars Attacks Arena - Mars Attacks Arena Mars Attacks Arena is a booby-trapped battlefield where players must fight to the death. Beautifully decorated in a sci-fi style, Mars Attacks Arena will leave your players with their mouths agape. - Includes: Two zones: Floor 1 and 2, with Traps, Barricades, Parkour, Radiation Zone, NPCS and Loots. Submitter BADGYVER Submitted 06/12/2024 Category Monuments  
  13. Version 1.0.1

    1 download

    - Mars Attacks Arena Mars Attacks Arena is a booby-trapped battlefield where players must fight to the death. Beautifully decorated in a sci-fi style, Mars Attacks Arena will leave your players with their mouths agape. - Includes: Two zones: Floor 1 and 2, with Traps, Barricades, Parkour, Radiation Zone, NPCS and Loots.
    $14.90
  14. Shiro

    Hydrae Oxide

    Version v1.2.4.2

    638 downloads

    Hydrae Oxide 4K is our second free map project that i started in november featuring custom monuments and prefabs from our vendors , unfortunately back then we were not able to release it due to issues with Linux servers hosting this map , so i had to redo whole map from 0 after my medical break! Finally i picked up the project again in February and worked on it every x days when i found time and now it is here ! Featuring monuments and prefabs , freebies from our vendors! Map has unique landscape and base building opportunities , unique roadside loot locations and a large railway network system connecting all monuments together to ensure a pleasant experience for the players while enjoying your server/s! You and your players will find exquisite monuments and easter eggs in those monuments which will make you giggle for sure! Around the main island there are a couple small islands scattered for the hermits who want to build far from the others and have no neighbours. Map is optimized for low entity count and proper terrain to ensure rendering is not a problem no matter the PC specs! The map features custom and procedural monuments Big thanks to @Abracadaverfor helping me with the electrics problem we had before publishing! Our featured files on this map are from @Niko@Ixis @LAMBO7000 @Kahoand @38-Ra for his jetfighter and of course me . Password is NOT included! The map is just for personal use for your servers just like The Oxide map our first Free map project! Put HydraeMapLock in oxide/plugins or else your server will not start! ~Procedural Monuments : - Launch Site - Excavator - Military Tunnels - Airfield - Power Plant - Water Treatment Plant - Trainyard - Sewerbranch - Harbor - Junkyard - Sphere Tank - Satellite Dish x2 - Desert Military Base - Roadside monuments including Supermarkets - Mining Outposts - Fishing Villages - Lighthouses - Stables - Supermarkets & Mining Outposts and Gas Stations - Large and Small Oil Rigs - Several underwater Labs ~ Custom Monuments & Prefabs: - Museum Heist Monument - Area 52 Monument - Farm Monument - FckboyShed - Bandit Swamp - Winter Cabin - Ranger Lookout - Offshore Bunker ~ Entity Count : 32058 ~ Map Size : 4000.
    Free
  15. View File Underwater Train Station Fear of the deep sea? Now you can overcome it with this wonderful window to the ocean. Stand out on your server with Underwater Train Station, an underwater train station with access to the subway tunnel. - Contains: NPCS, Loot, Puzzles and a nice decoration. - Tip: You can remove the train tracks and put your own custom ones (Existing tracks can serve as a guide, or if you prefer you can keep them as they are fully functional). Submitter BADGYVER Submitted 04/11/2024 Category Monuments  
  16. Version 1.0.0

    1 download

    Fear of the deep sea? Now you can overcome it with this wonderful window to the ocean. Stand out on your server with Underwater Train Station, an underwater train station with access to the subway tunnel. - Contains: NPCS, Loot, Puzzles and a nice decoration. - Tip: You can remove the train tracks and put your own custom ones (Existing tracks can serve as a guide, or if you prefer you can keep them as they are fully functional).
    $12.90
  17. Version 1.0.0

    2 downloads

    Now you will have a Rust style space for your clan, group or game team. The community is a circular space with several construction zones for your base or house. Surrounded by a large wall which offers a defense for your team. The community offers a decorative space for your Rust server, junkyard style.
    $12.90
  18. Version 1.0.0

    0 downloads

    Give your professional players another reason to excel with this volcano. - To access the volcano you will have to overcome the oil ring to get to the main box, activate the elevator with a button that will give you access to the elevator door. - As you go down to the volcano via the elevator, you can equip yourself and take some anti-radiation pills, you will need them. - Inside the volcano you will have to choose wisely the way to activate the door using a fuse and a red card, be careful, the access to this mechanism is dangerous, remember you are in a volcano, the ground is lava!!!!
    $12.90
  19. BADGYVER

    H1Z1 Lab

    Version 1.0.1

    0 downloads

    Will you be willing to give your life to find fortune? IT CONTAINS: H1Z1 Lab is an experimental laboratory with various puzzles to solve. It contains Zombies, NPC, traps, puzzles and an original crystal box in which you will get two hackable oil rig crates, plus extra loot of elite crates. VIDEO DEMO:
    $12.90
  20. Version 1.0.1

    0 downloads

    The Arecibo Observatory, also known as the National Astronomy and Ionosphere Center (NAIC) and formerly known as the Arecibo Ionosphere Observatory, is an observatory in Barrio Esperanza, Arecibo, Puerto Rico owned by the US National Science Foundation (NSF). IT CONTAINS: Great variety of Parkour, Puzzles, NPCs, Loot, Hackable Crates and a nice decoration. RECOMMENDATION: This monument has a high difficulty to complete, it is recommended for two players, although with higher difficulty one player can also complete this monument.
    $12.90
  21. BADGYVER

    Andalusia

    View File Andalusia Andalusia Custom Map for Rust, containing a wide variety of custom prefabs, terrains and real rivers of Andalusia. - Description: • Andalusia is a map with all the main rivers of Andalusia (Spain). • It contains the terrain, topology and real biome of Andalusia (Spain). • Size: 6000. • Objects: 88779. • Map protection plugin included. • The map can be edited: Yes. - Contains all Official Monuments: • Ferry Terminal • Nuclear missile silo • Large oil platform (This monument contains an access to the subway, you can reach this monument from the train) • Small oil platform (This monument contains an access to the subway, you can reach this monument from the train) • Submarine laboratories • Harbor • Large fishing villages • Fishing villages • Launch site (Customized, with a monorail surrounding this monument, it also contains: Ziplines, a small store, customized loot, npcs and a tug on which you will find a red card respawn) • Satellite dish (Customized, with attack helicopter respawn, recycler, custom loot, npcs and a small resting place) • The Dome • HQM Quarry • Stone quarry • Sulfur quarry • Arctic Research Base • Sewer Branch • Train yard • Junkyard • Abandoned military bases • Military tunnel • Caves • Large barns • Ranch • Bandit camp • Power plant • Swamp • Airfield (Customized, contains platforms with cranes, custom loot and npcs. Several zip lines with which you can cross the entire Aerodrome, in addition to a tank that guards this site) • Giant excavation • Outpost • Lighthouse - Prefabs and custom monuments: • Zeppelin (Puzzle-parkour). • Ghostbusters Barracks, this is a faithful monument to the fire station used by the ghostbusters, contains puzzles, traps, loot, npc, ghostbusters logo. • Civil Guard Barracks, a construction zone for the server administrator. This monument-zone contains helicopter respawns and loot. • Arena, zone with loots, defenses, towers, barricades and crate with code, everything you need for your server to contain a PVP zone. You can also use this zone for other things. • Bank, a monument created for the Bank Heist plugin. If you do not have this plugin, you can use this monument for the player to search for resources. • Aircraft carrier, the aircraft carrier has been created especially for the Biplane plugin, you can also use it as a monument, it contains helicopters, loot and NPCs. • Inferno Arena, is a battlefield with traps, death and fire. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Aerial platforms, each aerial platform contains several platforms connected to each other. • Epic Tower Construction Zone for players. • Train tracks scattered all over the map, carefully designed. • City, with collapsed skyscrapers. • Custom Oil plataform, with four oil platforms, two small and two large. (This monument contains an access to the subway, you can reach this monument from the train). • The Arecibo Observatory, also known as the National Astronomy and Ionosphere Center (NAIC) and formerly known as the Arecibo Ionosphere Observatory, is an observatory in Barrio Esperanza, Arecibo, Puerto Rico owned by the US National Science Foundation (NSF). • H1Z1 Lab is an experimental laboratory with various puzzles to solve. It contains Zombies, NPC, traps, puzzles and an original crystal box in which you will get two hackable oil rig crates, plus extra loot of elite crates. • Underwater glass dome, the player will be able to build underwater. • A variety of custom sites for the player to build, you can find these sites easily from the map, they are marked with an X mark. • Customized rivers navigable with motorboats. • Access by train to all the Oil Shelf Plaforms. - Monuments will be added to recreate-simulate Andalusia (Spain). Submitter BADGYVER Submitted 14/12/23 Category Mapas  
  22. BADGYVER

    The Community

    View File The Community Now you will have a Rust style space for your clan, group or game team. The community is a circular space with several construction zones for your base or house. Surrounded by a large wall which offers a defense for your team. The community offers a decorative space for your Rust server, junkyard style. Submitter BADGYVER Submitted 08/12/23 Category Prefabs  
  23. View File Arecibo Observatory The Arecibo Observatory, also known as the National Astronomy and Ionosphere Center (NAIC) and formerly known as the Arecibo Ionosphere Observatory, is an observatory in Barrio Esperanza, Arecibo, Puerto Rico owned by the US National Science Foundation (NSF). IT CONTAINS: Great variety of Parkour, Puzzles, NPCs, Loot, Hackable Crates and a nice decoration. RECOMMENDATION: This monument has a high difficulty to complete, it is recommended for two players, although with higher difficulty one player can also complete this monument. Submitter BADGYVER Submitted 21/11/23 Category Monuments  
  24. BADGYVER

    H1Z1 Lab

    View File H1Z1 Lab Will you be willing to give your life to find fortune? IT CONTAINS: H1Z1 Lab is an experimental laboratory with various puzzles to solve. It contains Zombies, NPC, traps, puzzles and an original crystal box in which you will get two hackable oil rig crates, plus extra loot of elite crates. VIDEO DEMO: Submitter BADGYVER Submitted 03/09/23 Category Monuments  
  25. View File Volcanic Research Give your professional players another reason to excel with this volcano. - To access the volcano you will have to overcome the oil ring to get to the main box, activate the elevator with a button that will give you access to the elevator door. - As you go down to the volcano via the elevator, you can equip yourself and take some anti-radiation pills, you will need them. - Inside the volcano you will have to choose wisely the way to activate the door using a fuse and a red card, be careful, the access to this mechanism is dangerous, remember you are in a volcano, the ground is lava!!!! Submitter BADGYVER Submitted 28/08/23 Category Monuments  
×
×
  • Create New...