Search the Community
Showing results for tags 'monument'.
-
Version 1.0.0
21 downloads
Straight out of Scranton, PA - this office building comes packed with loot, puzzles, and secret pathways. Total prefab count: 1151 Included features: - Unique "Fuel Puzzle" system that powers the entire monument (players will need to find the backup generator in the basement and add fuel to progress) - Green and Blue card loot rooms (Blue card room has a Red card desk spawner) - Air drop marker on roof (includes jump puzzle to get to the roof) - Recycler in warehouse on ground level - Dynamic lighting throughout the monument which indicates the power status of the generator and access paths For questions and support jump into the TRGC Prefab Support Discord channel: https://discord.gg/HdyvjsrsB3$2.50 -
Version 1.0.0
1 download
I present to you the new custom monument «Suspicious car repair shop». Feature: - Recycler - Red key card - There are bots on the location - The location has 2 Elite crate, 4 Military crate, 13 Normal crate and barrels are placed throughout the monument in a reasonable amount - There is a door that can be opened with a blue key card If you have any questions or suggestions, please contact me and I will try to answer them. Discord: achintsev$8.00 -
Version 0.1.6
637 downloads
A plugin that allows other plugins to interact with players and entities in monuments via API. The list of all monuments can be viewed in the: Default(Source of monument boundaries when changing the map or recreating boundaries) - *SERVER*\oxide\data\MonumentsWatcher\DefaultBounds.json Vanilla - *SERVER*\oxide\data\MonumentsWatcher\MonumentsBounds.json Custom - *SERVER*\oxide\data\MonumentsWatcher\CustomMonumentsBounds.json Note: MonumentsWatcher is utilized as an API for other plugins. You won't obtain any functionality beyond displaying monument boundaries without an additional plugin. The ability to automatically generate boundaries for vanilla and custom monuments; The ability to automatically regenerate boundaries for monuments on wipe; The ability to automatically adding languages for custom monuments; The ability to manually configure boundaries for monuments; The ability to track the entrance and exit of players, npcs and entities in a Monument and CargoShip; The ability to display boundaries. monumentswatcher.admin - Provides the capability to recreate or display monument boundaries. { "Chat command": "monument", "Is it worth enabling GameTips for messages?": true, "Is it worth recreating boundaries(excluding custom monuments) upon detecting a wipe?": true, "List of tracked categories of monuments. Leave blank to track all": [], "Wipe ID": null, "Version": { "Major": 0, "Minor": 1, "Patch": 7 } } Note: The list of available categories for monuments can be found in the Developer API section. ENG: https://pastebin.com/nsjBCqZe RUS: https://pastebin.com/ut2icv9T Note: After the plugin initialization, keys for custom monuments will be automatically added. show *monumentID*(optional) *floatValue*(optional) - Display the boundary of the monument you are in or specified. The display will last for the specified time or 30 seconds; list - List of available monuments; rotate *monumentID*(optional) *floatValue*(optional) - Rotate the monument you are in or specified, either in the direction you are looking or in the specified direction; recreate custom/all(optional) - Recreate the boundaries of vanilla/custom/all monuments. Note: Instead of a monumentID, you can leave it empty, but you must be inside a monument. You can also use the word 'closest' to select the nearest monument to you. Example: /monument show closest /monument show gas_station_1 /monument show gas_station_1_4 /monument rotation /monument rotation closest /monument rotation gas_station_1_0 256.5 /monument recreate void OnMonumentsWatcherLoaded() Called after the MonumentsWatcher plugin is fully loaded and ready. void OnCargoWatcherCreated(string monumentID, string type, CargoShip cargoShip) Called when a watcher is created for a CargoShip. void OnCargoWatcherDeleted(string monumentID) Called when a watcher is removed for a CargoShip. void OnMonumentsWatcherLoaded() { Puts("MonumentsWatcher plugin is ready!"); } void OnCargoWatcherCreated(string monumentID, string type, CargoShip cargoShip) { Puts($"Watcher for monument {monumentID}({type}) has been created!"); } void OnCargoWatcherDeleted(string monumentID) { Puts($"Watcher for monument {monumentID} has been deleted!"); } Entered hooks: void OnPlayerEnteredMonument(string monumentID, BasePlayer player, string type, string oldMonumentID) Called when a player enters any monument. void OnNpcEnteredMonument(string monumentID, BasePlayer npcPlayer, string type, string oldMonumentID) Called when an NPC player enters any monument. void OnEntityEnteredMonument(string monumentID, BaseEntity entity, string type, string oldMonumentID) Called when any other BaseEntity enters any monument. void OnPlayerEnteredMonument(string monumentID, BasePlayer player, string type, string oldMonumentID) { Puts($"{player.displayName} entered to {monumentID}({type}). His previous monument was {oldMonumentID}"); } void OnNpcEnteredMonument(string monumentID, BasePlayer npcPlayer, string type, string oldMonumentID) { Puts($"Npc({npcPlayer.displayName}) entered to {monumentID}({type}). Previous monument was {oldMonumentID}"); } void OnEntityEnteredMonument(string monumentID, BaseEntity entity, string type, string oldMonumentID) { Puts($"Entity({entity.net.ID}) entered to {monumentID}({type}). Previous monument was {oldMonumentID}"); } Exited hooks: void OnPlayerExitedMonument(string monumentID, BasePlayer player, string type, string reason, string newMonumentID) Called when a player exits any monument. void OnNpcExitedMonument(string monumentID, BasePlayer npcPlayer, string type, string reason, string newMonumentID) Called when an NPC player exits any monument. void OnEntityExitedMonument(string monumentID, BaseEntity entity, string type, string reason, string newMonumentID) Called when any other BaseEntity exits any monument. void OnPlayerExitedMonument(string monumentID, BasePlayer player, string type, string reason, string newMonumentID) { Puts($"{player.displayName} left from {monumentID}({type}). Reason: {reason}. They are now at '{newMonumentID}'."); } void OnNpcExitedMonument(string monumentID, BasePlayer npcPlayer, string type, string reason, string newMonumentID) { Puts($"Npc({npcPlayer.displayName}) left from {monumentID}({type}). Reason: {reason}. They are now in {newMonumentID}"); } void OnEntityExitedMonument(string monumentID, BaseEntity entity, string type, string reason, string newMonumentID) { Puts($"Entity({entity.net.ID}) left from {monumentID}({type}). Reason: {reason}. They are now in {newMonumentID}"); } [PluginReference] private Plugin MonumentsWatcher; There are 13 types of monuments: SafeZone(0): Bandit Camp, Outpost, Fishing Village, Ranch and Large Barn. RadTown(1): Airfield, Arctic Research Base, Abandoned Military Base, Giant Excavator Pit, Ferry Terminal, Harbor, Junkyard, Launch Site; Military Tunnel, Missile Silo, Power Plant, Sewer Branch, Satellite Dish, The Dome, Toxic Village(Legacy Radtown), Train Yard, Water Treatment Plant. RadTownWater(2): Oil Rigs, Underwater Labs and CargoShip. RadTownSmall(3): Lighthouse, Oxum's Gas Station, Abandoned Supermarket and Mining Outpost. TunnelStation(4) MiningQuarry(5): Sulfur Quarry, Stone Quarry and HQM Quarry. BunkerEntrance(6) Cave(7) Swamp(8) IceLake(9) PowerSubstation(10) WaterWell(11) Custom(12) There are 25 api methods: GetAllMonuments: Used to retrieve an array of IDs for all available monuments. (string[])(MonumentsWatcher?.Call("GetAllMonuments") ?? Array.Empty<string>()); GetAllMonumentsCategories: Used to retrieve a dictionary of IDs and categories for all available monuments. (Dictionary<string, string>)(MonumentsWatcher?.Call("GetAllMonumentsCategories") ?? new Dictionary<string, string>()); GetMonumentsByCategory: Used to retrieve all available monuments by category. To call the GetMonumentsByCategory method, you need to pass 1 parameter: monument category as a string. (string[])(MonumentsWatcher?.Call("GetMonumentsByCategory", "SafeZone") ?? Array.Empty<string>()); GetMonumentCategory: Used to retrieve the category of the specified monument. Returns an empty string on failure. To call the GetMonumentCategory method, you need to pass 1 parameter: monumentID as a string. (string)(MonumentsWatcher?.Call("GetMonumentCategory", monumentID) ?? string.Empty); GetMonumentDisplayName: Used to retrieve the nicename of a monument in the player's language. Returns an empty string on failure. To call the GetMonumentDisplayName method, you need to pass 3 parameters: monumentID as a string; Available options: userID as a ulong or a string; player as a BasePlayer or an IPlayer. displaySuffix as a bool. Should the suffix be displayed in the name if there are multiple such monuments? This parameter is optional. (string)(MonumentsWatcher?.Call("GetMonumentDisplayName", monumentID, player.userID, true) ?? string.Empty);//(ulong)userID (string)(MonumentsWatcher?.Call("GetMonumentDisplayName", monumentID, player, true) ?? string.Empty);//(BasePlayer/IPlayer)player (string)(MonumentsWatcher?.Call("GetMonumentDisplayName", monumentID, player.UserIDString, true) ?? string.Empty);//(string)userID ***recommended option*** GetMonumentDisplayNameByLang: Used to retrieve the nicename of a monument in the specified language. Returns an empty string on failure. To call the GetMonumentDisplayNameByLang method, you need to pass 3 parameters: monumentID as a string; two-char language as a string; displaySuffix as a bool. Should the suffix be displayed in the name if there are multiple such monuments? This parameter is optional. (string)(MonumentsWatcher?.Call("GetMonumentDisplayNameByLang", monumentID, "en", true) ?? string.Empty); GetMonumentPosition: Used to retrieve the Vector3 position of the specified monument. Returns Vector3.zero on failure. To call the GetMonumentPosition method, you need to pass 1 parameter: monumentID as a string. (Vector3)(MonumentsWatcher?.Call("GetMonumentPosition", monumentID) ?? Vector3.zero); GetMonumentByPos: Used to retrieve the monument at the specified position. Returns an empty string on failure. To call the GetMonumentByPos method, you need to pass 1 parameter: position as a Vector3. (string)(MonumentsWatcher?.Call("GetMonumentByPos", pos) ?? string.Empty); Note: This method returns the first encountered monument. Occasionally, there may be multiple monuments at a single point. Therefore, it is recommended to use the GetMonumentsByPos method. GetMonumentsByPos: Used to retrieve all monuments at the specified position. Returns null on failure. To call the GetMonumentsByPos method, you need to pass 1 parameter: position as a Vector3. (string[])(MonumentsWatcher?.Call("GetMonumentsByPos", pos) ?? Array.Empty<string>()); GetClosestMonument: Used to retrieve the nearest monument to the specified position. Returns an empty string on failure. To call the GetClosestMonument method, you need to pass 1 parameter: position as a Vector3. (string)(MonumentsWatcher?.Call("GetClosestMonument", pos) ?? string.Empty); IsPosInMonument: Used to check whether the specified position is within the specified monument. Returns a false on failure. To call the IsPosInMonument method, you need to pass 2 parameters: monumentID as a string; position as a Vector3. (bool)(MonumentsWatcher?.Call("IsPosInMonument", monumentID, pos) ?? false); ShowBounds: Used to display the boundaries of the specified monument to the specified player. To call the ShowBounds method, you need to pass 3 parameters: monumentID as a string; player as a BasePlayer; displayDuration as a float. Duration of displaying the monument boundaries in seconds. This parameter is optional. MonumentsWatcher?.Call("ShowBounds", monumentID, player, 20f); Note: Since an Admin flag is required for rendering, players without it will be temporarily granted an Admin flag and promptly revoked. PLAYERS API GetMonumentPlayers: Used to retrieve an array of all players located in the specified monument. Returns null on failure. To call the GetMonumentPlayers method, you need to pass 1 parameter: monumentID as a string. (BasePlayer[])(MonumentsWatcher?.Call("GetMonumentPlayers", monumentID) ?? Array.Empty<BasePlayer>()); GetPlayerMonument: Used to retrieve the monument in which the specified player is located. Returns an empty string on failure. To call the GetPlayerMonument method, you need to pass 1 parameter: Available options: player as a BasePlayer; userID as a ulong or a string. (string)(MonumentsWatcher?.Call("GetPlayerMonument", player.UserIDString) ?? string.Empty);//(string)userID (string)(MonumentsWatcher?.Call("GetPlayerMonument", player) ?? string.Empty);//(BasePlayer)player (string)(MonumentsWatcher?.Call("GetPlayerMonument", player.userID) ?? string.Empty);//(ulong)userID ***recommended option*** GetPlayerMonuments: Used to retrieve all monuments in which the specified player is located. Returns null on failure. To call the GetPlayerMonuments method, you need to pass 1 parameter: Available options: player as a BasePlayer; userID as a ulong or a string. (string[])(MonumentsWatcher?.Call("GetPlayerMonuments", player.UserIDString) ?? Array.Empty<string>());//(string)userID (string[])(MonumentsWatcher?.Call("GetPlayerMonuments", player) ?? Array.Empty<string>());//(BasePlayer)player (string[])(MonumentsWatcher?.Call("GetPlayerMonuments", player.userID) ?? Array.Empty<string>());//(ulong)userID ***recommended option*** GetPlayerClosestMonument: Used to retrieve the nearest monument to the specified player. Returns an empty string on failure. To call the GetPlayerClosestMonument method, you need to pass 1 parameter: Available options: player as a BasePlayer; userID as a ulong or a string. (string)(MonumentsWatcher?.Call("GetPlayerClosestMonument", player.UserIDString) ?? string.Empty);//(string)userID (string)(MonumentsWatcher?.Call("GetPlayerClosestMonument", player.userID) ?? string.Empty);//(ulong)userID (string)(MonumentsWatcher?.Call("GetPlayerClosestMonument", player) ?? string.Empty);//(BasePlayer)player ***recommended option*** IsPlayerInMonument: Used to check whether the specified player is in the specified monument. Returns a false on failure. To call the IsPlayerInMonument method, you need to pass 2 parameters: monumentID as a string; Available options: player as a BasePlayer; userID as a ulong or a string. (bool)(MonumentsWatcher?.Call("IsPlayerInMonument", monumentID, player.UserIDString) ?? false);//(string)userID (bool)(MonumentsWatcher?.Call("IsPlayerInMonument", monumentID, player) ?? false);//(BasePlayer)player (bool)(MonumentsWatcher?.Call("IsPlayerInMonument", monumentID, player.userID) ?? false);//(ulong)userID ***recommended option*** NPCS API GetMonumentNpcs: Used to retrieve an array of all npcs located in the specified monument. Returns null on failure. To call the GetMonumentNpcs method, you need to pass 1 parameter: monumentID as a string. (BasePlayer[])(MonumentsWatcher?.Call("GetMonumentNpcs", monumentID) ?? Array.Empty<BasePlayer>()); GetNpcMonument: Used to retrieve the monument in which the specified npc is located. Returns an empty string on failure. To call the GetNpcMonument method, you need to pass 1 parameter: Available options: npcPlayer as a BasePlayer; netID as a NetworkableId. (string)(MonumentsWatcher?.Call("GetNpcMonument", npcPlayer) ?? string.Empty);//(BasePlayer)npcPlayer (string)(MonumentsWatcher?.Call("GetNpcMonument", npcPlayer.net.ID) ?? string.Empty);//(NetworkableId)netID ***recommended option*** GetNpcMonuments: Used to retrieve all monuments in which the specified npc is located. Returns null on failure. To call the GetNpcMonuments method, you need to pass 1 parameter: Available options: npcPlayer as a BasePlayer; netID as a NetworkableId. (string[])(MonumentsWatcher?.Call("GetNpcMonuments", npcPlayer) ?? Array.Empty<string>());//(BasePlayer)npcPlayer (string[])(MonumentsWatcher?.Call("GetNpcMonuments", npcPlayer.net.ID) ?? Array.Empty<string>());//(NetworkableId)netID ***recommended option*** IsNpcInMonument: Used to check whether the specified npc is in the specified monument. Returns a false on failure. To call the IsNpcInMonument method, you need to pass 2 parameters: monumentID as a string; Available options: npcPlayer as a BasePlayer; netID as a NetworkableId. (bool)(MonumentsWatcher?.Call("IsNpcInMonument", monumentID, npcPlayer.net.ID) ?? false);//(NetworkableId)netID (bool)(MonumentsWatcher?.Call("IsNpcInMonument", monumentID, npcPlayer) ?? false);//(BasePlayer)npcPlayer ***recommended option*** ENTITIES API GetMonumentEntities: Used to retrieve an array of all entities located in the specified monument. Returns null on failure. To call the GetMonumentEntities method, you need to pass 1 parameter: monumentID as a string. (BaseEntity[])(MonumentsWatcher?.Call("GetMonumentEntities", monumentID) ?? Array.Empty<BaseEntity>()); GetEntityMonument: Used to retrieve the monument in which the specified entity is located. Returns an empty string on failure. To call the GetEntityMonument method, you need to pass 1 parameter: Available options: entity as a BaseEntity; netID as a NetworkableId. (string)(MonumentsWatcher?.Call("GetEntityMonument", entity) ?? string.Empty);//(BaseEntity)entity (string)(MonumentsWatcher?.Call("GetEntityMonument", entity.net.ID) ?? string.Empty);//(NetworkableId)netID ***recommended option*** GetEntityMonuments: Used to retrieve all monuments in which the specified entity is located. Returns null on failure. To call the GetEntityMonuments method, you need to pass 1 parameter: Available options: entity as a BaseEntity; netID as a NetworkableId. (string[])(MonumentsWatcher?.Call("GetEntityMonuments", entity) ?? Array.Empty<string>());//(BaseEntity)entity (string[])(MonumentsWatcher?.Call("GetEntityMonuments", entity.net.ID) ?? Array.Empty<string>());//(NetworkableId)netID ***recommended option*** IsEntityInMonument: Used to check whether the specified entity is in the specified monument. Returns a false on failure. To call the IsEntityInMonument method, you need to pass 2 parameters: monumentID as a string; Available options: entity as a BaseEntity; netID as a NetworkableId. (bool)(MonumentsWatcher?.Call("IsEntityInMonument", monumentID, entity.net.ID) ?? false);//(NetworkableId)netID (bool)(MonumentsWatcher?.Call("IsEntityInMonument", monumentID, entity) ?? false);//(BaseEntity)entity ***recommended option***Free -
Version 1.0.1
15 downloads
RUST Plugin Test Server TEST MY PLUGINS THERE! connect play.thepitereq.ovh:28050 Waystones plugin gives you the ability to quickly move from one position to another. It creates a waystone on desired monuments that can be used by players for quick movement around the map. It also allows players for creating their own waystones in their homes. Automatically place waystones on monuments for player teleportation. Supports waystones in player bases with ground, wall and empty space checks. Custom monument support. Configurable marker on map. Easy command waystone placement. Optional command for waystone crafting. RUST-like UI design. A lot of VIP permission options. (points gather, max points, max waystones saved) Auto data clear on map wipe. NoEscape PvP support. Pre-configured default RUST monuments. waystones.admin - Gives access to /placeway, tppoints and givewaystone commands. waystones.craft - Gives ability to craft waystone. (Configurable) Any other permission added in config file. /waystone - Command to craft waystone. (Configurable) /placeway [Optional: MonumentName] - Sets new position for nearest [set] monument waystone. tppoints - Command for giving teleport points to players. (Console Command) givewaystone [Optional: userId] - Gives you [user] an waystone for placement. (Console Command) { "PopUpAPI Preset Name": "Inventory", "Waystone Craft Command": "waystone", "Waystone Placeable Shortname": "composter", "Waystone Placeable Display Name": "Waystone", "Waystone Marker - Enabled": true, "Waystone Marker - Marker Alpha": 0.7, "Waystone Marker - Marker Radius": 0.05, "Waystone Marker - Marker Color #1": "#ffd342", "Waystone Marker - Marker Color #2": "#a38729", "Waystone Marker - Enable On Monuments": true, "Waystone Marker - Show Player Waystones By Default": false, "Waystone Marker - Lock Player Waystone Visibility Change": false, "Waystone Crafting - Enable Crafting": true, "Waystone Crafting - Require Permission": true, "Waystone Crafting - Required Workbench Level": 2, "Waystone Crafting - Craft Cost": [ { "Shortname": "stones", "Amount": 5000, "Skin": 0 }, { "Shortname": "targeting.computer", "Amount": 10, "Skin": 0 }, { "Shortname": "industrial.wall.light", "Amount": 4, "Skin": 0 }, { "Shortname": "industrial.wall.light.red", "Amount": 1, "Skin": 0 } ], "NoEscape - Lock Teleporting When PvP Blocked": true, "NoEscape - Lock Teleporting When Raid Blocked": true, "Teleport Cost Per Kilometer": 25.0, "Initial Point Amount": 100, "Initial Point Amount Permissions": { "waystones.admin": 1000, "waystones.svip": 500, "waystones.vip": 250 }, "Teleport Points Default Cap": 1000, "Teleport Points Cap Permissions": { "waystones.admin": 100000, "waystones.svip": 5000, "waystones.vip": 2500 }, "Teleport Points Refill Interval (in seconds, 0 to disable)": 60.0, "Teleport Points Refill Amount": 2, "Teleport Points Refill Amount Permissions": { "waystones.admin": 20, "waystones.svip": 5, "waystones.vip": 3 }, "Max Waystones Saved Default Cap": 6, "Max Waystones Saved Permissions": { "waystones.admin": 100, "waystones.svip": 18, "waystones.vip": 12 }, "God Mode After Teleport (in seconds, 0 to disable)": 0.0, "Waystone Destroy Entity Names": [ "rocket_basic", "explosive.timed.deployed" ], "Generate New Map Market Config Sections": true, "Map Marker Waystones": { "arctic_research_base_a": { "Enabled": true, "Offset": { "x": -34.46, "y": 0.0, "z": -54.53 }, "Rotation": { "x": 0.0, "y": 24.0, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "fishing_village_a": { "Enabled": true, "Offset": { "x": 19.59, "y": 1.99, "z": -10.79 }, "Rotation": { "x": 0.0, "y": 0.33, "z": 0.0 }, "Teleport Price Multiplier": 0.3 }, "fishing_village_b": { "Enabled": true, "Offset": { "x": -6.4, "y": 2.0, "z": 15.36 }, "Rotation": { "x": 0.0, "y": 180.4, "z": 0.0 }, "Teleport Price Multiplier": 0.3 }, "fishing_village_c": { "Enabled": true, "Offset": { "x": -7.62, "y": 2.02, "z": 16.37 }, "Rotation": { "x": 0.0, "y": 178.85, "z": 0.0 }, "Teleport Price Multiplier": 0.3 }, "ferry_terminal_1": { "Enabled": true, "Offset": { "x": 11.35, "y": 5.19, "z": 7.14 }, "Rotation": { "x": 0.0, "y": 86.81, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "harbor_1": { "Enabled": true, "Offset": { "x": 100.56, "y": 4.28, "z": -59.3 }, "Rotation": { "x": 0.0, "y": 273.79, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "harbor_2": { "Enabled": true, "Offset": { "x": -54.15, "y": 4.02, "z": -0.02 }, "Rotation": { "x": 0.0, "y": 88.02, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "airfield_1": { "Enabled": true, "Offset": { "x": -163.78, "y": 0.26, "z": -104.47 }, "Rotation": { "x": 0.0, "y": 3.34, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "excavator_1": { "Enabled": true, "Offset": { "x": -94.42, "y": 0.61, "z": -57.44 }, "Rotation": { "x": 0.0, "y": 138.7, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "military_tunnel_1": { "Enabled": true, "Offset": { "x": -76.77, "y": 19.47, "z": 63.1 }, "Rotation": { "x": 0.0, "y": 91.46, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "powerplant_1": { "Enabled": true, "Offset": { "x": -40.84, "y": 0.29, "z": -89.01 }, "Rotation": { "x": 0.0, "y": 90.4, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "trainyard_1": { "Enabled": true, "Offset": { "x": -82.86, "y": 0.28, "z": 15.5 }, "Rotation": { "x": 0.0, "y": 91.62, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "water_treatment_plant_1": { "Enabled": true, "Offset": { "x": -5.19, "y": 0.28, "z": -152.01 }, "Rotation": { "x": 0.0, "y": 0.08, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "lighthouse": { "Enabled": true, "Offset": { "x": 2.3, "y": 5.96, "z": 13.91 }, "Rotation": { "x": 0.0, "y": 84.95, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "bandit_town": { "Enabled": true, "Offset": { "x": 27.92, "y": 1.76, "z": -21.08 }, "Rotation": { "x": 0.0, "y": 20.9, "z": 0.0 }, "Teleport Price Multiplier": 0.1 }, "compound": { "Enabled": true, "Offset": { "x": 14.35, "y": 0.19, "z": 32.57 }, "Rotation": { "x": 0.0, "y": 92.0, "z": 0.0 }, "Teleport Price Multiplier": 0.1 }, "junkyard_1": { "Enabled": true, "Offset": { "x": 48.98, "y": 0.07, "z": 46.16 }, "Rotation": { "x": 0.0, "y": 190.78, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "nuclear_missile_silo": { "Enabled": true, "Offset": { "x": 41.7, "y": -5.91, "z": -58.81 }, "Rotation": { "x": 0.0, "y": 322.75, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "radtown_small_3": { "Enabled": true, "Offset": { "x": -46.11, "y": 19.79, "z": -48.73 }, "Rotation": { "x": 0.0, "y": 82.24, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "desert_military_base_a": { "Enabled": true, "Offset": { "x": 26.62, "y": 0.0, "z": -41.89 }, "Rotation": { "x": 0.0, "y": 359.57, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "desert_military_base_b": { "Enabled": true, "Offset": { "x": -45.48, "y": 0.0, "z": -21.53 }, "Rotation": { "x": 0.0, "y": 80.83, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "desert_military_base_c": { "Enabled": true, "Offset": { "x": -44.95, "y": 0.0, "z": 9.5 }, "Rotation": { "x": 0.0, "y": 89.92, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "desert_military_base_d": { "Enabled": true, "Offset": { "x": -63.3, "y": 0.0, "z": 2.77 }, "Rotation": { "x": 0.0, "y": 89.52, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "gas_station_1": { "Enabled": true, "Offset": { "x": 6.77, "y": 3.03, "z": -10.93 }, "Rotation": { "x": 0.0, "y": -180.04, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "radtown_1": { "Enabled": true, "Offset": { "x": 49.19, "y": 0.24, "z": 10.03 }, "Rotation": { "x": 0.0, "y": 180.21, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "supermarket_1": { "Enabled": true, "Offset": { "x": -1.26, "y": 0.0, "z": -18.49 }, "Rotation": { "x": 0.0, "y": 0.29, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "warehouse": { "Enabled": true, "Offset": { "x": -18.34, "y": 0.03, "z": -8.99 }, "Rotation": { "x": 0.0, "y": 90.56, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "mining_quarry_a": { "Enabled": true, "Offset": { "x": 10.34, "y": 3.6, "z": 24.88 }, "Rotation": { "x": 0.0, "y": 81.5, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "mining_quarry_b": { "Enabled": true, "Offset": { "x": 0.8, "y": 0.0, "z": 12.63 }, "Rotation": { "x": 0.0, "y": 159.67, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "mining_quarry_c": { "Enabled": true, "Offset": { "x": -11.03, "y": 2.99, "z": 32.86 }, "Rotation": { "x": 0.0, "y": 171.85, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "satellite_dish": { "Enabled": true, "Offset": { "x": -0.94, "y": 6.05, "z": -1.25 }, "Rotation": { "x": 0.0, "y": 187.49, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "sphere_tank": { "Enabled": true, "Offset": { "x": -33.94, "y": 5.76, "z": -12.03 }, "Rotation": { "x": 0.0, "y": 78.7, "z": 0.0 }, "Teleport Price Multiplier": 1.0 }, "stables_a": { "Enabled": true, "Offset": { "x": 19.44, "y": 3.05, "z": -2.58 }, "Rotation": { "x": 0.0, "y": 271.67, "z": 0.0 }, "Teleport Price Multiplier": 0.5 }, "stables_b": { "Enabled": true, "Offset": { "x": 16.64, "y": 2.99, "z": 2.14 }, "Rotation": { "x": 0.0, "y": 271.24, "z": 0.0 }, "Teleport Price Multiplier": 0.5 }, "launch_site_1": { "Enabled": true, "Offset": { "x": 208.42, "y": 3.25, "z": 54.73 }, "Rotation": { "x": 0.0, "y": 181.44, "z": 0.0 }, "Teleport Price Multiplier": 1.0 } } }$15.00- 14 comments
- 2 reviews
-
- 2
-
-
- #teleport
- #teleporting
- (and 13 more)
-
Version 0.1.14
842 downloads
Plugin for Real PvE servers, featuring damage prevention, anti-griefing measures, customizable PvP zones, an automatic loot queue in radtowns and raid zones, and much more. P.S. Since the previous implementation with DynamicPVP was not correct and had some issues, I have added universal hooks(Developer API section) for general access from all PvP plugins, which are currently missing in DynamicPVP. I have requested the author to add them(3 lines), but for now, you will need to use the modified version of DynamicPVP.cs The ability to set "server.pve" to "true", which allows the server to have a "PvE" flag; Damage from NPC's are enabled when server.pve is true; The ability to inflict damage to one's own structures with "server.pve true"; The ability to destroy(including external walls) or rotate one's structures without any time constraints; The ability to force the decay of building blocks with Twigs grade, even if there is wood in the Tool Cupboard; The ability to toggle the gather resource restriction in someone else's Building Privileges; No one, except the owner or their friends, will be able to open their loot containers (chests, storages, bodies, etc.); Administrators can bypass loot restrictions; The ability to schedule the killing of players if they disconnect within someone else's Building Privilege; Disabling backpack and active item drop upon death, even if backpack is full; The ability to disable 'Give' messages; The ability to modify the items given at spawn on the beach; The ability to create an unlimited number of custom permissions; The ability to allow players to bypass the queue; The ability to set limits on sleeping bags, shelters and auto turrets for each permission; The ability to set a multiplier for the prices of monuments and events for each permission; The ability to customize the price and amount of vehicles for each of your custom permissions; The ability to assign vehicles to each player; The ability to customize the assigned price and available amount of vehicles for each of your custom permissions; An assigned vehicle can't be damaged, looted or pushed by other players, but it can be pushed if it is within someone else's Building Privilege; The ability to loot monuments through a queue system; The ability to configure monuments, setting their looting price and time, and adjusting status bars for each monument; The ability to acquire the privilege to loot events (helicopters, bradleys, and raidable bases) through a purchase; The ability to customize the price of each event types and loot attempts (lives); NPCs only aggress against players who are looting monuments, events or raidable bases; Only players who are looting monuments, events or raidable bases can inflict damage to NPCs; RaidableBases are protected from griefing(no damage, no loot and etc). Only the owner can interact with the raid; Neutral RaidableBases can be purchased; Prices for purchasing neutral raids are configurable for each difficulty level; Configurable raid limits (currently available) along with discount multipliers for purchases, for each permission. File location: *SERVER*\oxide\data\RealPVE\PermissionConfig.json Default: https://pastebin.com/5VtWZZVr All permissions are created and configured in the config file under the "List of permissions" section. You can create as many permissions as needed and customize them flexibly. It is recommended to use the prefix "realpve" in the permission's name, for example: "realpve.vip". NOTE: The first permission will serve as the default permission for those who do not have any permissions. { "List of permissions. NOTE: The first permission will be used by default for those who do not have any permissions.": [ { "Permission Name": "realpve.default", "Bypass Queue": false, "Limit of beds": 15, "Limit of shelters": 1, "Limit of auto turrets": 12, "Seconds that will be skipped when opening HackableLockedCrate": 0.0, "Monuments price multiplier": 1.0, "Events price multiplier": 1.0, "Limit of RaidableBases(at the time)": 1, "RaidableBases price multiplier": 1.0, "Vehicles settings": { "Horse": { "Limit": 1, "Price": 10.0 }, "Bike": { "Limit": 1, "Price": 5.0 }, "MotorBike": { "Limit": 1, "Price": 20.0 }, "Car": { "Limit": 1, "Price": 25.0 }, ... } }, { "Permission Name": "realpve.vip", "Bypass Queue": true, "Limit of beds": 20, "Limit of shelters": 2, "Limit of auto turrets": 15, "Seconds that will be skipped when opening HackableLockedCrate": 450.0, "Monuments price multiplier": 0.9, "Events price multiplier": 0.9, "Limit of RaidableBases(at the time)": 2, "RaidableBases price multiplier": 0.9, "Vehicles settings": { "Horse": { "Limit": 5, "Price": 9.0 }, "Bike": { "Limit": 5, "Price": 4.5 }, "MotorBike": { "Limit": 5, "Price": 18.0 }, "Car": { "Limit": 5, "Price": 22.5 }, ... } } ], "Version": { "Major": 0, "Minor": 1, "Patch": 1 } } An example of a monument/event/rb multipliers using default permissions. For example, if you set the price for the Harbor at $1000, a player with the default permission(1.0) will pay $1000 * 1 = $1000. Meanwhile, a player with a VIP permission(0.9) will pay $1000 * 0.9 = $900. However, if a player possesses a misbehaving permission with a value of 1.1, they will need to pay $1000 * 1.1 = $1100. { "Chat command": "realpve", "Chat admin command": "adminpve", "Is it worth forcibly implementing PvE for a server?": true, "Is it worth enabling GameTips for messages?": true, "Is it worth preventing the sending of 'Give' messages?": true, "Is it worth preventing resource gathering in someone else's building privilege area?": false, "Is it worth preventing the pickup of plants spawned by the server in someone else's building privilege zone?": false, "Is it worth forcibly blocking damage from the patrol helicopter to building blocks and deployables?": false, "Is it worth preventing players from handcuffing others?": true, "Is it worth assigning portals(Halloween and Christmas) to the first player?": true, "Is it worth preventing a backpack from dropping upon player death?": true, "Is it worth preventing damage to the laptop of the Hackable Crate?": true, "Is it worth removing the penalties for recyclers in safe zones?": true, "Is it worth allowing all players to pick up items dropped by others? If enabled, personal settings will be ignored": false, "The format that will be used for prices": "${0}", "Vehicles - Time in seconds to display the marker when searching for a vehicle. A value of 0 disables the marker": 15.0, "Anti-Sleeper - Time in seconds after which a player will be killed if they disconnect while inside someone else's Building Privilege. Set to 0 to disable": 1200.0, "Is it worth enabling support for the 'Npc Random Raids' plugin?": true, "Is friendly fire enabled by default when creating a new team?": false, "PvP - Is it worth adding map markers for PvP zones?": true, "PvP - Name of the map maker": "PvP Zone!", "PvP - Settings for the status bar": { "Order": 9, "Height": 26, "Main_Color(Hex or RGBA)": "1 0.39 0.28 0.7", "Main_Transparency": 0.8, "Main_Material": "", "Image_Url": "https://i.imgur.com/oi5vIkk.png", "Image_Local(Leave empty to use Image_Url)": "RealPVE_PvP", "Image_Sprite(Leave empty to use Image_Local or Image_Url)": "", "Image_IsRawImage": false, "Image_Color(Hex or RGBA)": "1 0.39 0.28 1", "Image_Transparency": 1.0, "Is it worth enabling an outline for the image?": false, "Image_Outline_Color(Hex or RGBA)": "0.1 0.3 0.8 0.9", "Image_Outline_Transparency": 0.0, "Image_Outline_Distance": "0.75 0.75", "Text_Size": 12, "Text_Color(Hex or RGBA)": "1 1 1 1", "Text_Font(https://umod.org/guides/rust/basic-concepts-of-gui#fonts)": "RobotoCondensed-Bold.ttf", "Is it worth enabling an outline for the text?": false, "Text_Outline_Color(Hex or RGBA)": "#000000", "Text_Outline_Transparency": 1.0, "Text_Outline_Distance": "0.75 0.75", "SubText_Size": 12, "SubText_Color(Hex or RGBA)": "1 1 1 1", "SubText_Font": "RobotoCondensed-Bold.ttf", "Is it worth enabling an outline for the sub text?": false, "SubText_Outline_Color(Hex or RGBA)": "0.5 0.6 0.7 0.5", "SubText_Outline_Transparency": 0.0, "SubText_Outline_Distance": "0.75 0.75" }, "PvP - Settings for the progress status bar": { "Main_Color(Hex or RGBA)": "1 1 1 0.15", "Main_Transparency": 0.15, "Progress_Reverse": true, "Progress_Color": "#FF6347", "Progress_Transparency": 0.7, "Progress_OffsetMin": "0 0", "Progress_OffsetMax": "0 0" }, "Wipe ID": null, "Version": { "Major": 0, "Minor": 1, "Patch": 14 } } ENG: https://pastebin.com/ZMUL6pYL RUS: https://pastebin.com/Mx8cbMts Main commands(/realpve ) : autobuy - Toggle autobuy for monuments, vanilla events and raid bases with a total price greater than 0; pickup - Toggle access to pick up your items from the ground for all players; share - Manage access to looting your entities by other players(outside of the team): status *entityID*(optional) - Display information about the settings of the entity you are looking at or the one you specified; add *nameOrID* *entityID*(optional) - Add the specified player to the entity list you are looking at or the one you specified; remove *nameOrID* *entityID*(optional) - Remove the specified player from the entity list you are looking at or the one you specified; toggle *entityID*(optional) - Toggle the entity list you are looking at or the one you specified; delete *entityID*(optional) - Delete the settings for the entity you are looking at or the one you specified; clear - Delete the settings for all your entities. team - Manage your team: ff - Toggle the ability to damage your teammates. vehicle - Manage your vehicles: list - List of IDs for all your vehicles; find *vehicleID*(optional) - Help finding the vehicle you are looking at or the one you specified; unlink *vehicleID*(optional) - Unlink the vehicle you are looking at or the one you specified; clear - Unlink all your vehicles. Admin commands(/adminpve). Permission "realpve.admin" required: autobuy - Manage autobuy for monuments, vanilla events and raid bases: *nameOrId* - Toggle autobuy for the specified player; force monument/event/rb - Toggle forced autobuy. If enabled, player settings will be ignored; clear - Disable autobuy for everyone. config - Manage settings for values in the configuration file: forcepve *boolValue*(optional) - Is it worth forcibly implementing PvE for a server? gametips *boolValue*(optional) - Is it worth enabling GameTips for messages? givemsg *boolValue*(optional) - Is it worth preventing the sending of 'Give' messages? resource_privilege *boolValue*(optional) - Is it worth preventing resource gathering in someone else's building privilege area? plant_privilege *boolValue*(optional) - Is it worth preventing the pickup of plants spawned by the server in someone else's building privilege zone? heli_damage *boolValue*(optional) - Is it worth forcibly blocking damage from the patrol helicopter to building blocks and deployables? handcuffs *boolValue*(optional) - Is it worth assigning portals(Halloween and Christmas) to the first player? portals *boolValue*(optional) - Is it worth preventing players from handcuffing others? backpack_drop *boolValue*(optional) - Is it worth preventing a backpack from dropping upon player death? laptop_damage *boolValue*(optional) - Is it worth preventing damage to the laptop of the Hackable Crate? recycler_safezone *boolValue*(optional) - Is it worth removing the penalties for recyclers in safe zones? item_pickup *boolValue*(optional) - Is it worth allowing all players to pick up items dropped by others? If enabled, personal settings will be ignored; priceformat *stringValue* - The format that will be used for prices; vehicle_marker_time *floatValue* - Vehicles - Time in seconds to display the marker when searching for a vehicle. A value of 0 disables the marker; antisleeper *floatValue* - Anti-Sleeper - Time in seconds after which a player will be killed if they disconnect while inside someone else's Building Privilege. Set to 0 to disable; randomraids *boolValue*(optional) - Is it worth enabling support for the 'Npc Random Raids' plugin? teamff *boolValue*(optional) - Is friendly fire enabled by default when creating a new team? pvpmarkers *boolValue*(optional) - PvP - Is it worth adding map markers for PvP zones? pvpmarkersname *stringValue* - PvP - Name of the map maker. loot - Manage player access to entities without restrictions: *nameOrId* - Toggle unrestricted access for the specified player; self - Toggle unrestricted access for yourself; clear - Revoke unrestricted access for all players. monument - Manage monuments: list - List of available monuments; *monumentID*/this - Instead of the monumentID, you can use the word "this", but you must be inside the monument: suffix *boolValue*(optional) - Toggle the suffix display in the monument's name; broadcast *boolValue*(optional) - Toggle notifications about monument occupancy/release; time *intValue* - Set the looting time limit for the monument in seconds; price *floatValue* - Set the cost for looting rights. A value of 0 makes the monument free; offer *floatValue* - Set the offer duration for purchasing the monument in seconds; map_mode *intValue* - Set the marker display mode on the map. 0 - disabled, 1 - enabled, 2 - enabled during PvP mode; map_circle *boolValue*(optional) - Toggle the display of the monument's circle marker on the map; pvp *boolValue*(optional) - Toggle PvP mode for the monument; pvp_delay *floatValue* - Set the PvP mode duration in seconds for players after leaving the PvP monument; bar_progress *boolValue*(optional) - Toggle between TimeProgressCounter and TimeCounter bars for the monument. perm - Manage permissions: add *permName* - Adds a new permission to the list by copying values from the first(default) permission in the list. If the permission name starts with 'realpve', it will also register a new permission; add *permName* *sourcePermName* - Adds a new permission to the list by copying values from an existing permission in the list; remove *permName* - Removes an existing permission from the list; edit *permName* - Edits a permission: queue - Toggle the permission to bypass the server queue; beds *intValue* - Restriction on the number of available beds; shelters *intValue* - Restriction on the number of available shelters; turrets *intValue* - Restriction on the number of available turrets; hackable *floatValue* - Number of seconds(0-900) to skip when opening a hackable crate; monuments *floatValue* - Price multiplier for monuments; events *floatValue* - Price multiplier for vanilla events; rb_limit *intValue* - Restriction on the number of raid bases available simultaneously; rb_mult *floatValue* - Price multiplier for raid bases; vehicles *vehType* - Vehicles settings: limit *intValue* - Limit on the number of available vehicles by type; price *floatValue* - Price for registering a vehicle by type. clear - Removes all permissions from the list except the first one. pickup - Manage access to picking up another player's items from the ground: *nameOrId* - Toggle access to picking up a specific player's items from the ground; clear - Revoke access for all players to pick up items from the ground. share - Manage access to looting entities by other players(outside of the team): status *entityID*(optional) - Display information about the settings of the entity you are looking at or the one you specified; add *nameOrID* *entityID*(optional) - Add the specified player to the entity list you are looking at or the one you specified; remove *nameOrID* *entityID*(optional) - Remove the specified player from the entity list you are looking at or the one you specified; toggle *entityID*(optional) - Toggle the entity list you are looking at or the one you specified; delete *entityID*(optional) - Delete the settings for the entity you are looking at or the one you specified; clear *nameOrID*(optional) - Delete the settings for all entities or all entities of the specified player. tc - Manage building privilege: add self/*entityID* *nameOrID*(optional) - Add yourself or a specified player to the building privilege of the area you or the specified entity are in; remove self/*entityID* *nameOrID*(optional) - Remove yourself or a specified player from the building privilege of the area you or the specified entity are in; clear self/*entityID* - Clear the list of authorized players in the building privilege of the area you or the specified entity are in; info self/*entityID* - Get information about the building privilege of the area you or the specified entity are in. vehicle - List of all available vehicle types: types - List of available vehicle types. Example: /realpve pickup /realpve vehicle find *netID* /realpve team ff /adminpve perm add realpve.vip2 /adminpve perm add realpve.vip2 realpve.vip /adminpve perm edit realpve.vip2 queue true /adminpve perm edit realpve.vip2 vehicles horse limit 5 /adminpve monument list /adminpve monument *monumentID* pvp /adminpve monument *monumentID* price 7.5 /adminpve loot iiiaka /adminpve pickup iiiaka /adminpve tc info self /adminpve tc info 6959689 /adminpve vehicle types This plugin provides the ability to claim vehicles, thereby preventing theft and griefing from other players. In permissions, you can set the price and quantity restrictions for each type of vehicle, ensuring flexible customization according to your preferences. An assigned vehicle can't be damaged, looted or pushed by other players, but it can be pushed if it is within someone else's Building Privilege. File location: *SERVER*\oxide\data\RealPVE\MonumentConfig.json Default: https://pastebin.com/XY1d9YaM This plugin introduces queue system and loot purchases for monuments. You can customize the price and time for looting for each monument. Within monuments, only the "Looter" and his friends have the ability to loot, pick up items or damage entities. Additionally, NPCs and animals within monuments do not aggress against other players and do not receive damage from them. If a player dies within the monument, they will have a grace period to return. This allows players to safely loot monuments without fear of griefing. Example of monument configuration: "ferry_terminal_1": { "Type(This parameter is just a hint. Changes won’t have any effect)": "RadTown", "Is it worth displaying the suffix(if any) in the monument's name?": true, "Is it worth notifying all players about the occupation/release of the monument?": true, "The cost for the right to loot the monument. A value of 0 makes the monument free": 15.0, "The time in seconds(1-3600) given for looting the monument": 900, "The time in seconds(1-15) given to make a decision to purchase the monument": 5.0, "Map marker display mode: 0 - disabled, 1 - enabled, 2 - enabled during PvP mode": 1, "Is it worth creating a circle in the map marker?": true, "PvP - Is PvP enabled at this monument? If so, players will be able to kill each other and loot will be publicly accessible": false, "PvP - The time in seconds(0-60) during which the player retains PvP mode after leaving the PvP monument": 10.0, "Is it worth using a progress bar for bars with a counter?": true, "Settings for the status bar": { "Order": 10, "Height": 26, "Main_Color(Hex or RGBA)": "#FFBF99", "Main_Transparency": 0.8, "Main_Material": "", "Image_Url": "https://i.imgur.com/awUrIwA.png", "Image_Local(Leave empty to use Image_Url)": "RealPVE_ferry_terminal_1", "Image_Sprite(Leave empty to use Image_Local or Image_Url)": "", "Image_IsRawImage": false, "Image_Color(Hex or RGBA)": "#FFDCB6", "Image_Transparency": 1.0, "Is it worth enabling an outline for the image?": false, "Image_Outline_Color(Hex or RGBA)": "0.1 0.3 0.8 0.9", "Image_Outline_Transparency": 0.0, "Image_Outline_Distance": "0.75 0.75", "Text_Size": 12, "Text_Color(Hex or RGBA)": "1 1 1 1", "Text_Font(https://umod.org/guides/rust/basic-concepts-of-gui#fonts)": "RobotoCondensed-Bold.ttf", "Is it worth enabling an outline for the text?": false, "Text_Outline_Color(Hex or RGBA)": "#000000", "Text_Outline_Transparency": 1.0, "Text_Outline_Distance": "0.75 0.75", "SubText_Size": 12, "SubText_Color(Hex or RGBA)": "1 1 1 1", "SubText_Font": "RobotoCondensed-Bold.ttf", "Is it worth enabling an outline for the sub text?": false, "SubText_Outline_Color(Hex or RGBA)": "0.5 0.6 0.7 0.5", "SubText_Outline_Transparency": 0.0, "SubText_Outline_Distance": "0.75 0.75" }, "Settings for the progress status bar": { "Main_Color(Hex or RGBA)": "1 1 1 0.15", "Main_Transparency": 0.15, "Progress_Reverse": true, "Progress_Color": "#FFBF99", "Progress_Transparency": 0.7, "Progress_OffsetMin": "0 0", "Progress_OffsetMax": "0 0" } } Type - This field serves only as an indicator for you. The changes won't have any impact; ShowSuffix - Suffix display. Some monuments (for example Warehouses) have suffixes in the name, like "Warehouse #12"; Broadcast - Enabling or disabling broadcasts when a monument is occupied or vacated; LootingTime - Time allocated for looting the monument; Price - The price for which you can start looting the monument. 0 means looting is free; BarSettings - Settings for the Advanced Status Bar. You can also choose the types of monuments by specifying them under the "List of tracked types of monuments" section. A list of all available types can be viewed on the MonumentsWatcher's page in the "Developer API" section. "List of tracked types of monuments": [ "RadTown", "RadTownWater", "RadTownSmall", "TunnelStation", "Custom" ] Events, similar to monuments, offer the opportunity to claim events. All events are configured in the config file under the "Settings for the events" section. You can customize the price of looting and looting attempts(deaths, including friends). Just like in monuments, only the "Looter" and his friends have the ability to loot and damage entities. Additionally, in events, NPCs do not aggress against other players. If a player(including friends) exceeds the death limit, the event became free, thereby providing other players with the opportunity to claim the event. Example of event configuration: { "Is it worth enabling forced auto-buy for vanilla events where the final price is greater than 0?": false, "Settings for the PatrolHelicopter events": { "IsEnabled": true, "Time in seconds (1-15) given to respond for purchasing this event. Note: This is shown to everyone who deals damage, and the first person to buy it will claim it": 5.0, "Is it worth removing fire from crates?": true, "The price to claim the event. A value of 0 means it's free": 50.0, "The number of deaths after which the event becomes public. A value of 0 disables the limit": 5, "The time in seconds for which the event is locked to the player. A value of 0 disables the time limit": 1800.0 }, "Settings for the BradleyAPC events": { "IsEnabled": true, "Time in seconds (1-15) given to respond for purchasing this event. Note: This is shown to everyone who deals damage, and the first person to buy it will claim it": 5.0, "Is it worth removing fire from crates?": true, "The price to claim the event. A value of 0 means it's free": 50.0, "The number of deaths after which the event becomes public. A value of 0 disables the limit": 5, "The time in seconds for which the event is locked to the player. A value of 0 disables the time limit": 1800.0 }, "Version": { "Major": 0, "Minor": 1, "Patch": 0 } } Price - The price to claim the event. 0 means looting is free; DeathLimit - Limit of deaths after which the event becomes free. File location: *SERVER*\oxide\data\RealPVE\NewbieConfig.json Default: https://pastebin.com/QHZCqpji An example of an item list given for the main inventory: "List of items for the main inventory": [ { "ShortName": "note", "Slot": 0, "Amount": 1, "SkinID": 0, "Text": "MsgNoteText" } ] P.S. In the Text field, you need to specify the language key. Or, you can just write any text, but there won't be a translation of the text. File location: *SERVER*\oxide\data\RealPVE\RaidableBasesConfig.json Default: https://pastebin.com/rpDng7Fd Integration with the RaidableBases plugin does not restrict its functionality in any way. On the contrary, it adds an anti-grief system that protects bases from malicious players. In raid bases, NPCs and other entities can only receive damage from the raid owner or their friends; Turrets and traps do not aggress against outsiders; You can customize the price of claiming to each difficulty and set individual discounts for each permission. You can still purchase raid bases using the /buyraid command. Raid bases without owners(buyable, maintained, manual and scheduled) can be bought for a price set in the configuration file or assigned to the first player who enters its radius, if the final price(price * discount) less or equals to 0. Additionally, as a bonus, upon buying this plugin, you receive 5 free bases for 3 difficulty levels, along with configured loot for them. [PluginReference] private Plugin RealPVE; There are 6 universal hooks that the plugin is subscribed to, the use of which allows interaction with PVP in various PVE plugins: OnPlayerEnterPVP OnPlayerExitPVP OnEntityEnterPVP OnEntityExitPVP CreatePVPMapMarker DeletePVPMapMarker OnPlayerEnterPVP: Used to add a player to PVP mode/zone. To call the OnPlayerEnterPVP hook, you need to pass 2 parameters: <BasePlayer>player - The player to add to PVP; <string>zoneID - A unique identifier for your PVP zone. This parameter is very important because a player can be in multiple PVP zones at the same time and passing the zoneID in this case allows for correct processing of the player's location within them. Interface.CallHook("OnPlayerEnterPVP", player, "*Your unique zone identifier*");//Calling the OnPlayerEnterPVP hook to tell PVE plugins that the player needs to be added to the specified PVP zone. OnPlayerExitPVP: Used to remove a player from PVP mode/zone. Calling this hook guarantees the player’s removal from the specified PVP zone, but does not guarantee the removal from PVP mode, as there may be other zones in addition to yours. Also, when a player dies, they are automatically removed from all PVP zones. To call the OnPlayerExitPVP hook, you need to pass 3 parameters, 1 of which is optional: <BasePlayer>player - The player to remove from PVP; <string>zoneID - A unique identifier for your PVP zone; <float>pvpDelay - Optional. When the player exits your PVP zone, you can also pass the PVP delay time. However, if the player still has other active PVP zones, your PVP delay will not take effect. Interface.CallHook("OnPlayerExitPVP", player, "*Your unique zone identifier*", 10f);//Calling the OnPlayerExitPVP hook to tell PVE plugins that the player needs to be removed from the specified PVP zone, with the pvpDelay(10 seconds) specified if the player no longer has any active PVP zones. OnEntityEnterPVP: Used to add an entity to PVP mode/zone. In the case of RealPVE, this hook is only necessary to add entities with an owner(player) to a PVP, allowing other players to interact with them, such as a player's corpse after death(PlayerCorpse) or a backpack after the corpse disappears(DroppedItemContainer). To call the OnEntityEnterPVP hook, you need to pass 2 parameters: <BaseEntity>entity - The entity to add to PVP; <string>zoneID - A unique identifier for your PVP zone. Interface.CallHook("OnEntityEnterPVP", entity, "*Your unique zone identifier*");//Calling the OnEntityEnterPVP hook to tell PVE plugins that the entity needs to be added to the specified PVP zone. OnEntityExitPVP: Used to remove an entity from PVP mode/zone. When an entity dies, it is automatically removed from all PVP zones. To call the OnEntityExitPVP hook, you need to pass 3 parameters, 1 of which is optional: <BaseEntity>entity - The entity to remove from PVP; <string>zoneID - A unique identifier for your PVP zone; <float>pvpDelay - Optional. When the entity exits your PVP zone, you can also pass the PVP delay time. However, if the entity still has other active PVP zones, your PVP delay will not take effect. Interface.CallHook("OnEntityExitPVP", entity, "*Your unique zone identifier*", 10f);//Calling the OnEntityExitPVP hook to tell PVE plugins that the entity needs to be removed from the specified PVP zone, with the pvpDelay(10 seconds) specified if the entity no longer has any active PVP zones. CreatePVPMapMarker: Used to create a map marker for the PVP zone. To call the CreatePVPMapMarker hook, you need to pass 5 parameters, 2 of which is optional: <string>zoneID - A unique identifier for your PVP zone; <Vector3>pos - The position of your PVP zone; <float>radius - The radius of the circle for your PVP zone; <string>displayName - Optional. The display name for the map marker; <BaseEntity>entity - Optional. The entity to which the map marker should be attached. Interface.CallHook("CreatePVPMapMarker", "*Your unique zone identifier*", pos, 25f, "ATTENTION! This is a PVP zone!");//Calling the CreatePVPMapMarker hook to tell PVE plugins to create a map marker for the specified zone, at the specified position with the given radius, but without specifying a parent entity. DeletePVPMapMarker: Used to delete a map marker for the PVP zone. To call the DeletePVPMapMarker hook, you need to pass only 1 parameter: <string>zoneID - A unique identifier for your PVP zone. Interface.CallHook("DeletePVPMapMarker", "*Your unique zone identifier*");//Calling the DeletePVPMapMarker hook to tell PVE plugins to delete a map marker for the specified zone. There are 5 hooks that the plugin calls: OnPlayerPVPDelay OnPlayerPVPDelayed OnPlayerPVPDelayRemoved OnZoneStatusText CanRedeemKit OnPlayerPVPDelay: Called when a player exits the last active PVP zone, allowing other plugins to overwrite the value for pvpDelay. Returning a float value allows changing the pvpDelay for the player. A value less than zero disables the pvpDelay. When calling the OnPlayerPVPDelay hook, 3 parameters are passed: <BasePlayer>player - The player to whom the pvpDelay is applied; <float>pvpDelay - The initial value of pvpDelay; <string>zoneID - A unique identifier of PVP zone. object OnPlayerPVPDelay(BasePlayer player, float pvpDelay, string zoneID) { Puts($"Attempting to set a PvP delay of {pvpDelay} seconds for player {player.displayName} in zone {zoneID}!"); if (zoneID == "*Your unique zone identifier*") { return 15f;//Overriding the values for pvpDelay } return null;//Leave unchanged } OnPlayerPVPDelayed: Called after the PVP delay has been set for the player. When calling the OnPlayerPVPDelayed hook, 3 parameters are passed: <BasePlayer>player - The player to whom the pvpDelay is applied; <float>pvpDelay - The value of pvpDelay; <string>zoneID - A unique identifier of PVP zone. void OnPlayerPVPDelayed(BasePlayer player, float pvpDelay, string zoneID) { Puts($"A PvP delay of {pvpDelay} seconds has been set for player {player.displayName} in zone {zoneID}!"); } OnPlayerPVPDelayRemoved: Called when the PVP delay is removed from the player after they enter a PVP zone with an active PVP delay. When calling the OnPlayerPVPDelayRemoved hook, only 1 parameter is passed: <BasePlayer>player - The player from whom the PVP delay has been removed. void OnPlayerPVPDelayRemoved(BasePlayer player) { Puts($"PVP delay has been removed for player {player.displayName} as they entered a PVP zone!"); } OnZoneStatusText: Called when the text with the nice name for the specified zone is needed, to be displayed in the status bar. When calling the OnZoneStatusText hook, 2 parameters are passed: <BasePlayer>player - The player for whom the nice name for the zone is being requested; <string>zoneID - A unique identifier of PVP zone. object OnZoneStatusText(BasePlayer player, string zoneID) { Puts($"Text for the status bar is required for zone {zoneID}"); if (zoneID == "*Your unique zone identifier*") { return lang.GetMessage("*langKey*", this, player.UserIDString);//<string>Overriding the value for the status bar text } return null;//Leave unchanged } CanRedeemKit: Called before giving the starter kit, in the OnDefaultItemsReceive hook. A non-zero value cancels this action. When calling the CanRedeemKit hook, only 1 parameter is passed: <BasePlayer>player - The player to whom the kit is being attempted to be given. object CanRedeemKit(BasePlayer player) { Puts($"Attempting to give the kit to player {player.displayName}!"); if (player.IsAdmin) { return false;//Cancel the action } return null;//Leave unchanged }$39.99- 45 comments
- 1 review
-
- 3
-
-
- #rust
- #real
-
(and 56 more)
Tagged with:
- #rust
- #real
- #pve
- #pvp
- #solo
- #build
- #friendly
- #raid
- #npc
- #monument
- #monuments
- #loot
- #looting
- #farm
- #newbie
- #custom
- #bar
- #ui
- #cui
- #panel
- #vehicle
- #claim
- #limit
- #limits
- #sleeping
- #bag
- #sleeping bag
- #bed
- #shelter
- #permission
- #permissions
- #vip
- #economy
- #economics
- #rad
- #town
- #radtown
- #queue
- #bypass
- #vehicles
- #raidable
- #base
- #bases
- #raidablebases
- #raider
- #raiders
- #humannpc
- #event
- #events
- #copy
- #paste
- #copypaste
- #plugin
- #plugins
- #umod
- #oxide
- #carbon
- #iiiaka
-
Version 2,0,0
19 downloads
I would like to offer you my version of the popular map from the game Counter-Strike: Global Offensive (2) - CS_ASSAULT. This monument is perfect for any server as I have meticulously worked on it and included everything just like in the original version. ABOUT THE MONUMENT: It consists of a train stop, residential buildings, and the main hangar with 4 entrances: The first entrance, which is also the main one, is the main gate. The second entrance is a black exit on the opposite side of the hangar. The third entrance is on the opposite side of the hangar on the second floor. And the fourth exit is through the ventilation shaft connecting the parapet of the second floor and the guardroom. Loot: On the outside, you can find regular crates, while military crates are located inside. The monument will be constantly updated.$16.00- 4 comments
-
- #custom
- #custom map
- (and 10 more)
-
Version 1.0.1
1 download
"Tower of Decay" This monument features a nine-story central building styled as an unfinished high-rise under construction. Some floors hold hidden treasures and valuable loot, rewarding those willing to explore its heights. The main structure is surrounded by an enclosed area overgrown with dense trees and bushes, adding an air of mystery to the location. Near the main entrance, construction of a second building was started but abruptly halted after workers discovered a secret underground tunnel. The area also includes a small park with a fountain, creating a stark contrast to the industrial surroundings. Adjacent to the park lies a five-story parking garage, completing the image of a long-abandoned urban project. A key feature of the monument is a puzzle requiring a Green Card for entry. Solving it grants access to hidden rooms containing additional rewards, making the exploration even more rewarding. This location is perfect for adventurers seeking a challenge, valuable loot, and an immersive, mysterious atmosphere.$17.50 -
Version 1.0.7
13 downloads
The adventure continues in RATS 2, live a crazy and great miniature adventure in this brand new map. - FEATURES • Size: 4000. • Objects: 143772. • Map protection plugin included. • The map can be edited: Yes. - CONTAINS ALL OFFICIAL MONUMENTS • Radtown • 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 • Bradley Arena, a great battle against Helldivers style tanks. • 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. • Resource areas with flies: Lakes, Ore, Wood, Food. • Scalextric: A huge racing track with remote control, a tank watches over the tracks. • Skateboard: Build your base here. • Cargo Ship model: Full of loot, but watch your step sailor because you will find enemies on board. • Bullring: Use the Zone Manager plugin to place an event. • Ball: Build your base indoors. • Cake, a huge and delicious chocolate cake, inside you will find a not very pleasant surprise. • Billiard: An original area to build your base, access through the holes to discover a new world inspired by Mario Bross. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Fireplace: Look up, the Grinch is stuck. • Fishbowl, a huge aquatic area, contains a great variety of fish, in this area you will find the laboratory among other things. • Rubik's Cube: A colorful place to build your base. • Concert: Make your players have fun in this music zone. Turn on the music and lights, ants and flies will be your chorus. • 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. • Nintendo: A safe area to recycle, buy and trade. build your base on the controls. • Hotel: This three-storey hotel has two floors with a leisure area, rooms, a third floor with a shop-casino and an area prepared for defence in case of a helicopter attack. • Chess: A huge area to build anything you can think of. • Maze: Be careful and don't get lost, this maze contains loot, but also NPCs. • Roast chicken: Build inside, you will find resources around, watch out for NPCs. • Mazinger Z: Access its interior and complete the parkour to get your prize. "In RATS 2 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$54.90-
- 1
-
-
- #rats
- #rats2
-
(and 57 more)
Tagged with:
- #rats
- #rats2
- #rats 2
- #ratsmap
- #rats custom map
- #miniature
- #miniaturemap
- #adventure
- #custom map
- #rust
- #custommap
- #rustedit
- #bp
- #build area
- #character
- #monument
- #zipline
- #ants
- #fly
- #bugs
- #trainstation
- #toystory
- #toys
- #nintendo
- #mario
- #chess
- #hotel
- #luxuryhotel
- #luxury hotel
- #motel
- #mariobross
- #creeper
- #minecraft
- #fantasy
- #zeppelin
- #zepellin
- #dirigible
- #oxide
- #carbon
- #steam
- #playrust
- #pve
- #pvp
- #arena
- #rp
- #roleplay
- #role play
- #bullring
- #puzzle
- #mazingerz
- #mazinger z
- #ghost
- #ghostbusters
- #ghostbusters barracks
- #badgyver
- #facepunch
- #rustconsole
- #console
- #part2
-
Version 1.0.9
256 downloads
This plugin adds a high-risk, high-reward element to the newly introduced Radtown Monument. This dynamic event spawns a hazardous shipping container filled with valuable loot but surrounded by dangerous radioactive material. The challenge is twofold: not only must players manage the intense radiation levels, but they must also defend the container from relentless attack drones that aim to destroy it. Key Features: Valuable Loot: The container holds rare and powerful resources, making it a highly coveted prize. Multiple drone attack waves: Drones attack in mul Intense Radiation: High levels of radiation require careful planning and protective gear to approach safely. Drone Defense: As players attempt to claim the loot, AI-controlled drones will attack the container. Players must defend it until the crate unlocks. Catastrophic Explosion: If players fail to protect the container or take too long, it will trigger a massive explosion, devastating the area and killing any nearby players. Configuration options: Drone wave count, drone count per wave Drone health and damage Container health Crate Loot and much more ... This plugin enhances the Radtown Monument with intense, timed gameplay, rewarding those who can outlast both the environment and the drones—but punishing failure with explosive consequences! Permissions: radtownevent.admin - Required to run admin commands Commands: radtown start - Start the event radtown stop - Stop the event Developer Api: void OnRadtownEventContainerDelivered() // Called when the container has been delivered and the event is ready to start void OnRadtownEventStart() // Called when the locked crate inside the container has been hacked void OnRadtownEventEnd(bool success) // Called when the event is over. Success is false when the container exploded Configuration: { "Time between events (minutes)": 60, "Crate hack time (seconds; drone waves will spawn until the crate is fully hacked)": 600, "Container health": 8000, "Time before despawn after event has been completed (seconds)": 300, "Time before despawn if event is not started (minutes)": 30, "Make event zone visible": false, "Drone wave configuration": [ { "Wave number": 1, "Preparation time before drones spawn (seconds)": 5, "Maximum number of concurrent drones": 3, "Explosive drone configuration": { "Number of attack drones to spawn (0 to disable)": 20, "Drone health": 100, "Damage per shell": 40, "Target players": false }, "Kamikaze drone configuration": { "Number of kamikaze drones to spawn (0 to disable)": 0, "Drone health": 100, "Damage on explosion": 60, "Target players": false } }, { "Wave number": 2, "Preparation time before drones spawn (seconds)": 20, "Maximum number of concurrent drones": 4, "Explosive drone configuration": { "Number of attack drones to spawn (0 to disable)": 20, "Drone health": 150, "Damage per shell": 50, "Target players": false }, "Kamikaze drone configuration": { "Number of kamikaze drones to spawn (0 to disable)": 30, "Drone health": 150, "Damage on explosion": 60, "Target players": false } }, { "Wave number": 3, "Preparation time before drones spawn (seconds)": 20, "Maximum number of concurrent drones": 5, "Explosive drone configuration": { "Number of attack drones to spawn (0 to disable)": 40, "Drone health": 200, "Damage per shell": 40, "Target players": true }, "Kamikaze drone configuration": { "Number of kamikaze drones to spawn (0 to disable)": 40, "Drone health": 200, "Damage on explosion": 60, "Target players": false } }, { "Wave number": 4, "Preparation time before drones spawn (seconds)": 20, "Maximum number of concurrent drones": 8, "Explosive drone configuration": { "Number of attack drones to spawn (0 to disable)": 40, "Drone health": 250, "Damage per shell": 70, "Target players": true }, "Kamikaze drone configuration": { "Number of kamikaze drones to spawn (0 to disable)": 40, "Drone health": 250, "Damage on explosion": 80, "Target players": true } }, { "Wave number": 5, "Preparation time before drones spawn (seconds)": 20, "Maximum number of concurrent drones": 8, "Explosive drone configuration": { "Number of attack drones to spawn (0 to disable)": 40, "Drone health": 250, "Damage per shell": 70, "Target players": true }, "Kamikaze drone configuration": { "Number of kamikaze drones to spawn (0 to disable)": 40, "Drone health": 250, "Damage on explosion": 80, "Target players": true } } ], "Locked crate loot table": { "Enabled": false, "Minimum items": 4, "Maximum items": 8, "Item list": [ { "Short name": "scrap", "Min amount": 12, "Max amount": 48, "Chance (1 = 100%)": 1.0, "Skin id": 0, "Custom name": "" } ] } }$21.00- 13 comments
- 3 reviews
-
- 2
-
-
-
-
- #small monument
- #train station
-
(and 5 more)
Tagged with:
-
Version 1.0.0
3 downloads
Farmhouse is one of the main game maps in Demonologist. A small puzzle with 2 switches and one fuse has been added to the replica, it is designed to loot and get a blue card, you can mine 3 normal crates, 1 military crate and 1 elite crate. Farmhouse can be suitable for both Halloween and as an everyday monument for mining. The house has been moved to the swamp. The object consists of 3587 objects. The house is completely ready, you will only need to add a construction trigger if you need it. I have added a test map with a set of checkpoints to the archive. https://steamcommunity.com/profiles/76561198254845948/ - contact here.$10.00-
- 2
-
-
-
- #halloween
- #monument
-
(and 1 more)
Tagged with:
-
Version 1.3.11
1,143 downloads
This plugin adds custom portals, which could be deployed on players' bases, vanilla and custom monuments. Custom maps To use Custom Portals on your map you need to place any prefab and create a custom prefab from it. Name it CustomPortals.<portal name> 2 portals with the same name will link. ! Make sure not to break the prefab and not to add them as part of other prefabs ! Commands Player Chat Commands /buyportal - buy portal (requires customportals.buy permission) /spawnportal - spawns portal (requires customportals.spawn permission) Admin Chat Commands All of the commands that are mentioned below require customportals.admin permission! /customportals add <portal name> - spawns portal on the monument you stand on /customportals remove - removes portal from the monument /customportals reset - removes all portals from the monument /changeportal - setup any portal Admin Console Commands giveportal <amount> <player name> - gives portal(s) to the specified player Permissions customportals.use - required to use portals customportals.admin - allows usage of /customportals and giveportal commands customportals.buy - allows players to buy portal, using /buyportal command customportals.free - allows players to get portal for free, using /buyportal command (buy permission is still required) customportals.freeuse - allows players to use the portal for free (if the use price is set) customportals.bypasslimit - allows players to place infinite amount of portals customportals.bypasslinkinglimits - allows players to link any portals customportals.spawn - alllows players to spawn portals using a command, instead of placing them manually If you are an admin, you can specify individual portal permissions. They are saved as customportals.portal.<portal permission name> Localization This plugin has built-in support for the following languages - English Russian API BasePortal SpawnPortal(Vector3 position, Quaternion rotation, string name) // spawns portal Item CreatePortalItem() // returns portal item$9.99- 129 comments
- 8 reviews
-
- 7
-
-
-
Version 1.2.7
1,845 downloads
This plugin adds a new dynamic zombie event to your server, the appearance of which you can customize in the configuration for any standard and custom monuments Description The event begins with a message in chat that the evacuation of the general from the island will begin soon. At the end of the configured timer, a military checkpoint randomly appears on the map and it is said in the chat that the general's guard was killed, and the general himself was seriously wounded The player and his friends (if you have any) need to arrive at the military checkpoint and call for help for the general with the laptop located at the checkpoint control center After the player calls for help, waves of zombies will attack the base. During the preparation phase, players can upgrade the base with turrets, purchase ammunition for them, or place it from their inventory through the checkpoint control center. In the doorways, players can install barricades of different types (5 types of barricades, which differ in the amount of Hit Points) to contain the incoming waves of zombies. The player can also use a hammer to repair the barricades. During the attack phase, waves of zombies will be directed at you. You cannot allow zombies to kill the general, otherwise, the event will end. There are several zombie types (in future updates it is planned to add to the list of zombie types). Each type of zombie has its own tasks. After the end of each wave, a room with crates opens, where there will be a reward for you At the end of the event, a helicopter arrives for the general and picks him up, and you are notified in chat that the event has been successfully completed. When the general dies, the event ends, as will the attack wave, the event, and all hope is lost! All the necessary settings of zombies, timers, items in crates for each wave, as well as settings for each wave (the number of zombies of each type, the time of the preparation phase and the attack wave, etc.), settings of the military checkpoint (the price of buying something or improving the base, used ammo in turrets, etc.), the price of repairs, barricade options, and many other settings are available in the plugin configuration Also in the event there are additional missions during the waves of attack, during which you will receive an additional reward (in future updates it is planned to add to the list of additional missions). You can set up additional missions in the settings of each attack wave The event provides the use of several military base designs. The Mad Mappers team will add to the list of constructions for the event in the future. When an event appears, the plugin randomly selects the construction of the base from those that you have in the data folder, and also randomly selects a place to appear from all those that have been set in the plugin configuration Also, the Mad Mappers team will begin to offer support in our custom maps for this event and contain files for the appearance of bases in custom monuments and locations on our maps Constructions of other bases Defendable Bases (Bundle-1) Defendable Bases (Bundle-2) Custom Map Maps that have a configuration for the appearance of bases on their custom monuments You can also download all these files for all maps here Deathland Badlands Destroyed World Detroit: Irreparable Damage Oregon 2: Last Hope Oregon: Land of Dead Pandora All files for custom maps are stored in the folder oxide/data/DefendableBases/CustomMap. You don't have to delete files from there, the plugin will understand by itself which map is currently installed on the server and will download only the necessary file if there is one in this folder. The plugin will tell you about this process in the console during the plugin loading. It will write in the console what file works on the current map, and what ones don’t work If you want to create a custom place for the base to appear on your custom map or on a map that is not in this list, you have to create the ID of this custom map. After that you need to place an item such as a RAND Switch on your map. It must be placed randomly, where it will not be visible to other players. You will get the identifier, if you add up the three coordinates of the position of this object from RustEdit (x, y and z) and write the resulting value in the parameter of your file (an example file can be taken from ready-made files) - ID As an example, let's take the coordinates (26.896, -456.158, 527.258), then our identifier is 26.896 - 456.158 + 527.258 = 97.996 Then you need to indicate a list of bases that will appear on your map. You need to copy the configuration data block for each base construction. In the database parameters you will specify the name of the base construction and a list of positions where it can appear The list of positions consists of several parameters. First you need to specify the position and rotation of the appearance of the base on your map, then you can get these values using RustEdit. You need to choose the place for the appearance of the event on the custom monument, where the player has a ban on construction You have such a parameter as the pursuit radius for such a type of zombie as Blazer. These zombies run around the base along this radius and shoot at the players. Please note! Some object sometimes may be on your map in this radius, for example a fence, and they will not be able to overcome it, because they cannot run inside this circle, and they haven’t a way out for them so you need to leave them a way or adjust it by increasing or decreasing the radius You have a list of coordinates for the points of appearance of all zombies. It is necessary to indicate these coordinates evenly around the base so that the zombies run from different sides and attack all sides of the base, not just a few ones. So it will be more interesting to play this event. Also note the fact that you can indicate the coordinate where a player can create his house, so it is advisable to specify all the coordinates that are in the construction ban zone, they are in the zone of your custom monument. You can also get the coordinates of the appearance of zombies using RustEdit Images You may want to change some parameters during the plugin installation or the base configuration In the plugin configuration these parameters are: Custom Barricades => Price for repairs (per hammer hit) => List of items, 3 maximum (if the economy method is 3) In the base configuration, these parameters are: List of turrets => Price to unlock => List of items, 3 maximum (if the economy method is 3) List of turrets => List of ammo => Price => List of items, 3 maximum (if the economy method is 3) List of barricades to buy => Price => List of items, 3 maximum (if the economy method is 3) A list of items that are in the laptop inventory when the base appears List of attack waves => Additional missions => Reward for completing the mission => List of items If you change items in the current configuration items, you need to upload the image for this item to the oxide/data/Images folder. In order for the plugin to load this image and can use it for display in the player's GUI. If it is a standard Rust item, you need to name this image file by its ShortName. If it is a custom item, you need to name the image file by the SkinID of the item Then you need to make a few changes to the plugin configuration in the List of paths to GUI images item. You need to add a new image to this list. The name is the ShortName or SkinID of the item. The path to the image will look something like this: Images/{ShortName or SkinID}.png If you use the economy of some following points on your server as prices, you can change the image with the name Economic to your own with the same name All images must be used square. Attention! The lower size of the image file will be displayed to the player faster Dependencies Required NpcSpawn Dependencies (optional, not required) True PVE PveMode GUI Announcements Notify Discord Messages AlphaLoot CustomLoot NTeleportation Economics Server Rewards IQEconomic Chat commands (only for administrators) /warstart {name} – start the event ({name} – name of the base) /warstop - end the event Console commands (RCON only) warstart {name} – start the event ({name} – name of the base) warstop - end the event givebarricade {steamid} {level} {amount} - a player with a SteamID ({steamid}) is given a certain number of barricades ({amount}) of a certain level ({level}) Plugin Config en - example of plugin configuration in English ru - example of plugin configuration in Russian Base Config en - example of base configuration in English ru - example of base configuration in Russian Custom Map Config en - example of custom map configuration in English ru - example of custom map configuration in Russian My Discord: KpucTaJl#8923 Join the Mad Mappers Discord here! Check out more of my work here! Creator of the default configuration and the bases – jtedal Help in creating a plugin description – Jbird#2022$45.00- 97 comments
- 8 reviews
-
- 9
-
-
-
-
- #barricade
- #ch47
- (and 26 more)
-
Version 1.0.0
1 download
I present to you the new custom monument «The old observation tower». Feature: - Recycler - Green key card - The location has 5 Normal crate and barrels are placed throughout the monument in a reasonable amount If you have any questions or suggestions, please contact me and I will try to answer them. Discord: achintsev$5.00 -
Version 1.0.1
6 downloads
A small town to loot, based on the town from Red Dead Redemption 2. objects - 8249 objects 1010 Restaurant - 3 food boxes, 1 normal box, 1 military box objects 1350 Saloon - 5 normal boxes objects 702 Sheriff - 1 normal box, 1 small box objects 1455 Church - 3 normal boxes, 1 military box objects 682 Gun Shop - 1 normal box, gun shop objects 423 Office - fake building objects 704 Bank - 3 normal boxes, 1 military box objects 540 Post Office - 1 small box, 2 normal boxes objects 1011 Train Station - 3 normal boxes, 1 military box objects 273 Farm - Recycler, 2 normal boxes, 1 military box Stable - is You can't buy a complete saddle without a dealer, but you can add one yourself if you want.$17.00-
- 5
-
-
-
- #rdr2
- #valentine
-
(and 1 more)
Tagged with:
-
Version 1.0.0
2 downloads
The farm is a small custom monument created to diversify your map. I was trying to make something similar to the existing monuments and fit it into the world of the game. The monument includes the following: - A green key card - Recycler - Places for barrels and crates to appear The prefab will be improved and refined in the future. If you have any questions or suggestions, please contact me and I will try to answer them.$5.00 -
Version 1.4.2
25 downloads
The Z-Billboards plugin gives you the ability to make billboards in no-time! With the size of these eye catchers, people WILL see your server info, vending ads or king size memes. Z-Billboards The Z-Billboards plugin gives you the ability to make billboards of any size you want! After creation, it is possible to add any image from the internet like you are used to with other sign mods. Multiple images are possible too. What is the first 10 x 10 sized 5 frame video you paste on your base? With the size of these eye-catchers, people WILL see your server info, vending ads, or king-size memes. No need to edit the image yourself: When pasting an image to a billboard, it will be resized to fit your billboard perfectly. The process of splitting the image into the right amount of pieces is also done automatically. It is really as simple as pasting a normal image on a single sign. Added in 1.4.0: Pass an optional brightness parameter to your paste command to set the brightness of your images: /billboard sil <url> 0.0 – 1.0 (0 = darkest, 1 = lightest) Product features Automatic placement of (neon) signs so they are always aligned No photo editing required, insert the image URL and resizing, splitting and pasting is all automatically done for you 3 tiers + admin tier for limiting the size of billboards Limit the total amount of billboards per tier Animated signs possible, pasting an image will use the next free sign Toggle power & Adjust animation speed with 1 command In theory, no limits regarding total size Adjust brightness of the image in game Usage Always start with the top left Large Animated Neon Sign or an XL Picture Frame. After that, look at the sign and create the billboard: /billboard create <horizontal signs> <vertical signs> To paste an image, look at your billboard and use: /billboard sil <image url> The plugin will now download your image, stretch it to make it fit the full billboard, cut it in equal parts (the amount of neon signs) and paste every part onto the right neon sign. Synchronize animated billboards When pasting more than one image on a billboard made of neon signs, it will start to animate. Because not all images are pasted at the same time, it is possible the neon signs are not synchronized with each other. To solve this problem, wait for the pasting to be done and toggle your billboard’s power or speed. Both commands will ‘restart’ your billboard. All neon signs will start at the first image again. Brightness Most images on neon signs look better when they are made a little darker. Since version 1.4.0 there is an optional brightness value you can add to the paste command. The image is pasted at it’s brightest (1.0 or 100%) by default. Lower the value to make an image darker, 0.5 means the image will be pasted at 50% brightness. To use this functionality, simply add the brightness after the URL. Commands /billboard create 2 2 /billboard sil <image url> /billboard sil <image url> [brightness 0.0 - 1.0] /billboard toggle --> toggle all power on/off (this also syncs animated signs) /billboard destroy --> removes your billboard /billboard speed 1.5 --> changes speed of animated signs /billboard info --> get billboard ID and location Console commands billboard.toggle <billboard ID> --> power on/off billboard (needs permission zbillboards.console) Configuration The mod comes with 4 different permissions to determine the maximum size of a billboard per player (group). It also has some other settings to tweak performance: { "Maximum amount of signs in total (width x height) Tier 1": 6, "Maximum amount of billboards (any size, 0 = unlimited) Tier 1": 1, "Maximum amount of signs in total (width x height) Tier 2": 12, "Maximum amount of billboards (any size, 0 = unlimited) Tier 2": 3, "Maximum amount of signs in total (width x height) Tier 3": 16, "Maximum amount of billboards (any size, 0 = unlimited) Tier 3": 5, "Maximum amount of signs in total (width x height) Admin": 150, "Width and height of each neon sign image in pixels": 150, --> higher has better quality but uses more performance "Lock signs to owner after creating billboard": true, "Give back a Neon Sign when a billboard is removed with the destroy command": true, "Seconds between pasting images": 0.25 --> pasting too many image parts too fast will product lag, "Destroy billboard when any of it's signs gets removed, picked up or destroyed": true --> this prevents players from duplicating and selling their signs on the black market } Above (default) settings would mean a player with tier 1 can place a maximum of 1 billboard, containing 6 or less signs. A tier 3 player can place 5 billboards, each made of maximal 16 signs. Permissions zbillboards.admin zbillboards.console --> to use console commands zbillboards.tier1 zbillboards.tier2 zbillboards.tier3 Performance I managed to create billboards as big as 12 x 12 and they perform very well. Do keep in mind that the process of downloading, resizing and splitting the images is very heavy for your server. Billboards this size WILL produce lag and I recommend to let only admins have the ability to make them this big. Since version 1.3.0, normal XL Picture Frames are supported. These signs do a lot better in terms of performance! Support If you have any problems, suggestions or questions, then please let me know! The quickest way to contact me is on Discord (josh.z) or join my Discord server to meet and discuss with other victims of my plugins! https://discord.gg/7ApTVphM7f$25.00 -
Version 1.0.0
1 download
I present to your attention a small monument called The Cave Under The Lighthouse. It consists of a small cave and an abandoned bunker above it. Feature: - Recycler - Green key card If you have any questions or suggestions, please contact me and I will try to answer them.$8.00 -
Version 1.2.1
101 downloads
Deathland A great custom post-apocalypse style map to add a little bit of horror to your server The story of the creation of the map as well as the storyline of the video is timed to a new event (Defendable Bases) from KpucTaJl that wants to immerse us in the world of the post-apocalypse when the dead captured the earth and all hope is only in our hands How can I view the map? You can do this in our Discord server by submitting a request for an invitation to our servers. There you will be given the rights of an "administrator" and without any difficulties you will be able to fly around the map and fully familiarize yourself with it. Discord Server: https://discord.gg/UpUXuxs4Vx For which plugins do I provide configuration files? Defendable Bases BetterNpc Description Size: 4000к Prefab Count: ~64к Custom monuments: Gallows Project (Includes 4 medium underground stations) The Swamp of the Guards Water Dump Excavation Village of the Dead Frostpunk Generator Underground Station-1 Underground Station-1 Food Shops Car Services Custom Warehouses T-Stations А place to build your base Monuments from Facepunch: Train Yard Military tunnels Sphere Tank Military Base Outpost Bandit camp Satellite Dish Lighthouses Launch Site Underwater Labs Oil Rig Large Oil Rig Harbor 1 Harbor 2 Fishing Villages Ranch Junkyard Ziplines Railway tracks Quarries Check out more of my work here!$34.99 -
Version 1.2.3
76 downloads
Video : Showcase Video Features : - Randomized loot respawn intervals, configurable for each monument. Example: "launch site": "5-10" (in seconds) - Default respawn time is set between 30-60 minutes but can be fully adjusted through the configuration. - Automatically removes monuments that no longer exist after a server wipe, keeping the configuration clean and up-to-date. Supported Crates : Supported Monuments : All Game Monuments Additional Settings : "Direct container removal without dropping loot": false, "Enable When Player Dont Finish Looting Containers Will Drop Loot On Ground": true,$19.99 -
-
- #prefab pack
- #monument
- (and 7 more)
-
Version 1.0.2
18 downloads
- FEATURES • Size: 4000. • Objects: 147114. • Map protection plugin included. • The map can be edited: Yes. - CONTAINS ALL OFFICIAL MONUMENTS • Radtown • 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. • Resource areas with flies: Lakes, Ore, Wood, Food. • Scalextric: A huge racing track with remote control, a tank watches over the tracks. • Skateboard: Build your base here. • Cargo Ship model: Full of loot, but watch your step sailor because you will find enemies on board. • Bullring: Use the Zone Manager plugin to place an event. • Ball: Build your base indoors. • Cake, a huge and delicious chocolate cake, inside you will find a not very pleasant surprise. • Billiard: An original area to build your base, access through the holes to discover a new world inspired by Mario Bross. • Train Stations, with waiting room, loot and NPC, with secondary rail respawn. • Fireplace: Look up, the Grinch is stuck. • Fishbowl, a huge aquatic area, contains a great variety of fish, in this area you will find the laboratory among other things. • Rubik's Cube: A colorful place to build your base. • Concert: Make your players have fun in this music zone. Turn on the music and lights, ants and flies will be your chorus. • 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. • Nintendo: A safe area to recycle, buy and trade. build your base on the controls. • Big Xmas Tree: A gigantic Xmas Tree. Build your base anywhere on the Xmas Tree. Moreover, BIG Xmas Tree is not only a decoration, it also contains a snowy village inside the pot. • Maze: Be careful and don't get lost, this maze contains loot, but also npcs. "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 .$54.90- 4 comments
- 1 review
-
- 3
-
-
- #rats
- #rats2
-
(and 47 more)
Tagged with:
- #rats
- #rats2
- #ratsmap
- #rats custom map
- #xmas
- #xmassale
- #xmastree
- #miniature
- #adventure
- #custom map
- #rust
- #rustedit
- #build area
- #monument
- #zipline
- #mrhankey
- #ants
- #fly
- #bugs
- #trainstation
- #toystory
- #nintendo
- #mario
- #mariobross
- #creeper
- #fantasy
- #christmas
- #christmas map
- #xmas map
- #xmasmap
- #zeppelin
- #oxide
- #carbon
- #steam
- #playrust
- #pve
- #pvp
- #roleplay
- #arena
- #bullring
- #puzzle
- #mazingerz
- #ghostbusters
- #badgyver
- #facepunch
- #rustconsole
- #fuckingxmas
- #part2
- #rats 2
-
Version 1.1.0
130 downloads
The Monument Events plugin creates amazing events on the monument from preconfigured presets from config. It creates CustomNPCs around the monument which will roam the monument during the event. Then it will spawn CH47 Helicopter which will drop Hackable crates & spawn configured Patrol Helicopters which will roam the monument vicinity. When players try to unlock the Hackable Crate there will be a CH47 Helicopter which will carry NPC and drop on the monument and will give players an amazing raged experience. Amazing event for engaging players for monument conquest 10+ Monument preset preconfigured PVE/PVP support Easy setup everything is pre-configured, so drug and drop and it will auto start from the selected time Massive configure option for individual monuments (Except a few not added) /mestart Preset_Name | monumentID - Starts any specific event (Console & Chat command) /mestop Preset_Name | monumentID - Stops the event (Console & Chat command) /mestartrandom - Starts a random from presets (Console & Chat command) /meadd edit PRESET_NAME - Select a monument for editing spawn points (Chat command) /meadd npcspawn - Creates NPC spawn points for the selected monument (Chat command) /meadd wavespawn - Creates Wave Npc spawn points for the selected monument (Chat command) /meadd cratespawn - Creates Crates spawn points for the selected monument (Chat command) /meadd stopedit - Deselect the current editing monument (Chat command) MonumentEvents.admin - Permission required for using commands Coming Soon DATA: NPCData.json SettingsData.json$19.99 -
Version 1.0.0
2 downloads
A Train Station With Usable Tracks all you need to do connect your personal tracks to the station and its good to go. It can be setup as an abandon train station if that way is more your style. This Stations has a recycler, 4 functional payphone stations, and a gambling caboose waiting on you to waste the scrap you just found. Prefabs: 969 NPCS: 13 Regular Scientist Spawns All on a 1200-1800 Second Respawn Timer. ( 20-30 Minutes) Loot: Normal Crates: 9 Military Crates: 2 Minecarts: 3 Food Spawns: 6 Med Spawns: 5 Tool Crates : 2 Fuel Spawns: 2 Vehicle parts: 2$4.00