Not passing along the flags at all to zone managerNot An Issue

I've setup zone flags but they don't get passed along to Zone Manager for the PVP zones. Been trying to figure this out. Cause I dont want players to be able to access they're backpacks or tp out of PVP zones.

Can you post a pastebin link to your dynamicpvp.json config, or DM it to me on Discord (@hunterz_)?

I'm pretty sure that the "Extra Zone Flags" setting in dynamicpvp.json is meant to be a list of strings, and they have to be flags supported by Zone Manager: https://umod.org/plugins/zone-manager#flag-types

For example, this should prevent crafting and also prevent animals from spawning:

"Extra Zone Flags": [
  "nocraft",
  "nonpcspawns"
],​

It is assumed that the flag value should be "true", because you can simply omit it from the list to achieve the same effect as "false".
Locked automatically