Possible to block Restore Items Upon Death plugin?
Anyway to block this plugin from working in the raid zones? I have a PvE server with PvP zones and would like players to have the risk of losing items in the raid base areas if they die
The author of that plugin would need to add a hook for this to work. Currently I've just modified it for other server owners.

if (Interface.CallHook("OnRestoreUponDeath", player) != null) return;

in OnPlayerDeath
So where would i put it on my config file? Sorry, kinda new to this. Thank you for your assistance!
that goes in the .cs file

search for this OnPlayerDeath, replace it all with this:

        private void OnPlayerDeath(BasePlayer player, HitInfo info)
        {
            if (!player.IsValid() || !player.IsConnected || player.IsNpc || restoreData.HasRestoreData(player.userID))
                return;
            if (Interface.CallHook("OnRestoreUponDeath", player) != null) 
                return;
            ConfigData.LossAmounts lossAmounts;
            if (HasAnyPermission(player.UserIDString, out lossAmounts))
                restoreData.AddData(player, lossAmounts);
        }​
okay, thank you very much!
This is actually not working anymore for some reason, the plugin wouldnt load for a few days, i tried undoing this and it is now working. So replacing what you told me to replace does not work anymore.
I'm not sure why. I suggest asking the author to fix this