Bounds
Bounds are defined areas in a world that can detect when players enter or leave. They also contain information about the blocks and entities within them
Usage
A bound has:
firstLocation
andsecondLocation
which the bound is created fromworld
which is the world of the boundplayers
which is a list of all players within the boundmetadata
which is aCustomDataHolder
, allows you to store custom metadata on the bound objectticks
which is boolean indicating if the bound ticks or not (ticking is used to determine when players enter/leave. PlayerMoveEvent is not reliable for this)onEnter
method which sets the unit which is invoked when player enters the boundonLeave
method which sets the unit which is invoked when player leaves the boundhighestPoint
which is the location highest point in the boundlowestPoint
which is the location lowest point in the boundfill
method which fills all the blocks in the boundgetBlocks
which returns map of Location to Block of all blocks in the boundresize
method which resizes the boundgetEntities
method which returns Entity list of all entities in the bounddispose
method which removes the bound and unregisters all bindables and listeners
Examples
You can create a bound by passing in locations of two corners, then you can use onEnter and onLeave methods to set what happens when players enter/leave:
kotlin
val bound = Bound(topRight, bottomLeft)
bound.onEnter { player ->
player.sendMessage("<red>Entering PVP Area! Be careful!!")
player.isInvulnerable = false
}
bound.onLeave { player ->
player.sendMessage("<lime>Leaving PVP Area! You are safe now :P")
player.isInvulnerable = true
}