I don't know why my other post got removed... I need help in setting up a Rust server for PvP but without the raiding. We don't want raid damage on any player entities/deployables or buildings. I tried setting up True PVE mod but can't seem to configure it for what we need. I also tried No Raid mod but this one is a raid on a timer I haven't found a way to set it up for it to always be no raiding. Any help would be appreciated.
Need help setting up PvP without the raiding
Maybe set the NoRaid timer to be something unreachable, such as forty four thousand seconds (about the seconds in a month). You could set the check interval high since they'll never pass the check, and fewer checks would be higher performance.
"NoRaidCommand": {
"Enabled": true,
"DefaultMin": 44000.0,
"CheckInterval": 120 Use the OnEntityTakeDamage hook.
If building, damage = 0.
If door or deployable, maybe damage = 0.
If player, full damage.
You can have no raiding with No Raid - hence the name :)
"StopAllRaiding": true, JimDeadlock
You can have no raiding with No Raid - hence the name :)"StopAllRaiding": true,
nice but where should I put that code at? I'm new to rust and uMod.
NoRaid.json (in the config directory)