Active but everything is still lootableSolved
Hey guys, I run a PVE server and have been trying to get this addon to work, I have some PVP zones so the zone manager and exclude all zones is active. Everyone is still able to loot everything, i've assigned permissions and this is my config, could anyone help me out please?:
{
  "AdminCanLoot": true,
  "CanAuthorizeCupboard": true,
  "CanLootBackpack": false,
  "CanLootBackpackPlugin": false,
  "CanLootCorpse": false,
  "CanLootEntity": false,
  "CanLootPlayer": false,
  "CanOvenToggle": false,
  "CanPickup": false,
  "ExcludeEntities": [
    "mailbox.deployed"
  ],
  "UseCupboard": false,
  "UseCupboardInclude": [
    "storage"
  ],
  "UseExcludeEntities": true,
  "UseFriendsAPI": true,
  "UseOnlyInCupboardRange": false,
  "UseOnlyInCupboardRangeInclude": [
    "storage"
  ],
  "UsePermission": true,
  "UseTeams": true,
  "UseZoneManager": true,
  "ZoneID": [
    "12345"
  ],
  "ZoneManagerIncludeMode": true
}​

From description of the plugin:

UseZoneManager - enable to use the Zone Manager to exclude the plugin from working in a certain zone

ZoneManagerIncludeMode - enable to exclude plugin in all zones and use "ZoneID" list to include the plugin to working in a certain zone

So, for PVE server with PVP zones:

  "UseZoneManager": true,
  "ZoneID": [
    "12345" // list of PVP zones ID
  ],
  "ZoneManagerIncludeMode": false
Thanks! but how about if the zones for the pvp areas are dynamic? I would I then flip it to?:
"UseZoneManager": false,
"ZoneID": [
  "12345" // list of PVP zones ID
],
"ZoneManagerIncludeMode": true​
Locked automatically