I'm using iProtector, and MyPlot. The iProtector settings protect the whole Plot World, that I cannot even build on my own plot. Is there a way that MyPlot will override iProtector settings? My iProtector settings are (unprotected areas): God: False | Edit-Protection: True | Touch-Protection: False Plus, is there also a way to set the number of plots a player can get/claim for a rank (PurePerms)? Example, Guests can only claim 3 plots, but VIPs can get 5.
You can use the permission myplot.claimplots.5, for example, to give a rank up to 5 plots. I haven't checked iProtector for a while, I'll take a look now.
1. MyPlot does not check to see if events are cancelled by previous plugins according to this: https://github.com/jasonwynn10/MyPlot/blob/API3/src/MyPlot/EventListener.php#L118-L153 2. The permission "myplot.claimplots" can be followed by ".AnyNumberHere" for specifically set plot counts according to this: https://github.com/jasonwynn10/MyPlot/blob/API3/src/MyPlot/MyPlot.php#L361-L380
iProtector and MyPlots work fine together for me, as @jasonwynn10 has confirmed with the code - I think your problem is that you have set Edit-Protection: True. The setting says 'Keep players from editing the world', so you need to set it to False, since you do not want to prevent people from editing unprotected areas.
1. Code: # Config file for iProtector by LDX; # Settings for unprotected areas in worlds without specific settings: Default: # Keep players from getting hurt? God: true # Keep players from editing the world? Edit: true # Keep players from touching blocks and activating things like chests? Touch: false # Settings for unprotected areas in individual worlds: Worlds: PvP1: # Keep players from getting hurt? God: true # Keep players from editing the world? Edit: true # Keep players from touching blocks and activating things like chests? Touch: false Farming: # Keep players from getting hurt? God: true # Keep players from editing the world? Edit: false # Keep players from touching blocks and activating things like chests? Touch: false Plots: # Keep players from getting hurt? God: false # Keep players from editing the world? Edit: false # Keep players from touching blocks and activating things like chests? Touch: true Contest-Plots: # Keep players from getting hurt? God: false # Keep players from editing the world? Edit: false # Keep players from touching blocks and activating things like chests? Touch: true 2. The newest I can find, https://github.com/LDX-MCPE/iProtector
The default spawn protection applies to all worlds, so try a plot further from spawn to be sure. If that still fails, try removing all your plugins except MyPlot and iProtector.
I set the default spawn protection to 4 only, it can't be the problem. I tried removing all my plugins except iProtector and MyPlot, but I still cannot edit the plot. I tried removing iProtector afterwards, and it works again. That means, iProtector makes the problem.
`Touch: true` will prevent placing blocks. Probably also breaking blocks for good measure, since it doesn't check for right/left-click in PlayerInteractEvent, so it'll trigger anti-instabreak.