Visibility Handlers
Overview
Zone visibility handlers are system components that control player visibility within mob zones. These handlers determine which players can see each other when they occupy the same zone.
How Zone Visibility Works
When players enter a zone, the active zone visibility handler processes the player list and applies its specific visibility rules. These rules determine:
Which players are visible to other players
Which players remain hidden from view
How the visibility state is maintained as players join or leave the zone
Available Handlers
Currently, these are the available zone visibility handlers:
default-zone-hiding
default-zone-hiding
Behavior: Hides all players from each other within the same zone.
This handler implements complete player isolation within a zone. When active, no players can see any other players, regardless of how many players are present in the zone. Each player experiences the zone as if they were alone.
random-10-players
random-10-players
Behavior: Makes only 10 randomly selected players visible to each other, while hiding all remaining players.
This handler creates a limited visibility environment where only a subset of players can interact visually. The 10 players are selected randomly from all players in the zone.
all-players-visible
all-players-visible
Behavior: Makes all players in the same zone visible to each other.
This is the most open visibility handler, where every player in the zone can see every other player. No hiding or filtering is applied, providing full transparency of all zone occupants.
Last updated
Was this helpful?