By default, Rust gives players only 10 minutes to demolish or rotate building blocks after placement. This plugin extends those timers based on permission profiles, giving different groups more time to fix building mistakes. You can configure separate demolish and rotation windows for each permission group, from VIP players who get extended time to default players with standard limits.
This creates three permissions:
Permissions
extendedhammer.default-- Grants the default profile's demolish and rotation timersextendedhammer.vip-- Grants the VIP profile's demolish and rotation timers
Configuration
JSON:
{
"Version": "2.0.0",
"Permission Profiles": {
"default": {
"Demolish Time (Seconds)": 600,
"Rotation Time (Seconds)": 600
},
"vip": {
"Demolish Time (Seconds)": 1200,
"Rotation Time (Seconds)": 1200
}
}
}
Profile Settings
Demolish Time-- How long after placement players can demolish structures with the hammerRotation Time-- How long after placement players can rotate building blocks with the hammer
Adding Custom Profiles
You can create additional profiles for different player groups. Each profile key becomes a permission suffix:
JSON:
{
"Version": "2.0.0",
"Permission Profiles": {
"default": {
"Demolish Time (Seconds)": 600,
"Rotation Time (Seconds)": 600
},
"vip": {
"Demolish Time (Seconds)": 1200,
"Rotation Time (Seconds)": 1200
},
"admin": {
"Demolish Time (Seconds)": 3600,
"Rotation Time (Seconds)": 3600
}
}
}
extendedhammer.default-- 10 minute timersextendedhammer.vip-- 20 minute timersextendedhammer.admin-- 60 minute timers
