By continuing to use this site, you agree to the Terms of Service of this website, including usage of cookies.
OK, Don't show this again
This is a PocketMine-MP plugin which lets you make and control areas!
Every area has its own priority.
You can disable/enable events for each area!
Effects are given when entering the area and cleared when they leave! You can also set it so it applies to the whitelisted player's!
If an item is banned in the area, they can not be used! You can also set it so it applies to the whitelisted player's!
Every area has its own whitelist!
# Configuration file for AdvancedAreas by Its123Miguel321
# Config file version (Do not edit this!)
config-version: 1.0
# The data provider is where the area data is stored.
# Accepted types of data providers: yaml, json, and sqlite
data-provider: json
# The AdvancedAreas wand item.
# Default wand item: feather
wand-item: feather
# When entering an area, the name will be shown
show-area-name: true
# How the area name will be shown
# Accepted types: title, popup, message
area-name-type: popup
# These are the default settings for areas!
# DO NOT remove any of the events!
default-area-settings:
priority: 5
banned-items: []
events:
block.break: true
block.decay: true
block.grow: true
block.place: true
block.update: true
entity.damage: true
entity.explosion: true
entity.regain-health: true
entity.teleport: true
player.craft: true
player.flight: true
player.interact: true
player.item-drop: true
player.item-pickup: true
player.sprint: true
player.hunger: true
effects: []
whitelist: []
These are the most used parts of the API!
Checks if a position is inside an area!
AreasAPI::isInside(Position $pos);
Checks if a position is in an area by name!
AreasAPI::inAreaByName(Position $pos, string $name);
Checks if the current position is still in the same area!
AreasAPI::inSameArea(Position $current, Area $previous);
Get the areas the position is in!
$areas = AreasAPI::getAreasIn(Position $pos);
How to create areas!
AdvancedAreas::getInstance()->getProvider()->create(
string $displayName,
Selections $selections,
int $priority = -100,
array $whitelist = [],
array $events = [],
array $effects = [],
array $items = [],
bool $itemsForWhitelist = false,
bool $effectsForWhitelist = false
);
How to delete areas!
AdvancedAreas::getInstance()->getProvider()->delete(Area $area);
How to get all areas!
AdvancedAreas::getInstance()->getProvider()->getAll();
If you have any suggestions, contact me on discord! (Its123Miguel321)
If you have found a bug, please create an Issue!
You can leave one review per plugin release, and delete or update your review at any time