Monument Spawns adds monuments to the death screen as spawn options. After dying, players can pick a monument from the respawn list and spawn somewhere inside it, just like they would with a sleeping bag or bed.
Each monument shows up with either a sleeping bag or bed icon, and you can give it a custom name so it reads cleanly on the respawn screen.
You can also set a cooldown for each monument and lock specific ones behind a permission, which is useful for keeping bigger monuments like Launch Site on a longer reuse timer or reserving them for vips.
Permissions
This plugin does not have any fixed permissions. Permissions are set per monument inside the config underRequired Permission and are registered automatically when the plugin loads.If you don't include
monumentspawns. at the start, it's added for you. So writing either of these in the config gives the same permission:vip-- Becomesmonumentspawns.vipmonumentspawns.vip-- Stays asmonumentspawns.vip
Required Permission empty to make a monument available to everyone.Configuration
JSON:
{
"Monuments": [
{
"Enabled": true,
"Prefab Name Contains": "compound",
"Name Shown On Respawn Screen": "Outpost",
"Respawn Cooldown Seconds (0 = no cooldown)": 60.0,
"Required Permission (e.g., vip or monumentspawns.vip, leave empty for everyone)": "",
"Icon Type (bed or sleepingbag, empty = sleeping bag)": "sleepingbag"
},
{
"Enabled": true,
"Prefab Name Contains": "bandit_town",
"Name Shown On Respawn Screen": "Bandit Camp",
"Respawn Cooldown Seconds (0 = no cooldown)": 60.0,
"Required Permission (e.g., vip or monumentspawns.vip, leave empty for everyone)": "",
"Icon Type (bed or sleepingbag, empty = sleeping bag)": "sleepingbag"
},
{
"Enabled": true,
"Prefab Name Contains": "launch_site_1",
"Name Shown On Respawn Screen": "Launch Site",
"Respawn Cooldown Seconds (0 = no cooldown)": 300.0,
"Required Permission (e.g., vip or monumentspawns.vip, leave empty for everyone)": "",
"Icon Type (bed or sleepingbag, empty = sleeping bag)": "bed"
}
]
}
Each monument entry has the following settings:
Enabled-- Whether this monument shows up on the respawn screen. Set tofalseto turn it off without removing the entryPrefab Name Contains-- The name used to find the monument on the mapName Shown On Respawn Screen-- The label players see on the death screen. If left empty, the monument's default name is usedRespawn Cooldown Seconds-- How long a player must wait before respawning at this monument again. Set to0for no cooldownRequired Permission-- Permission needed to see and use this monument. Leave empty for no restrictionIcon Type-- The icon shown next to the monument on the respawn screen. Usebedfor a bed icon orsleepingbagfor a sleeping bag icon. Defaults to sleeping bag if left empty
