SkillAgentSearch skills...

Libschematic

Create and manipulate MCEdit Schematic files in PocketMine-MP plugins.

Install / Use

/learn @BlockHorizons/Libschematic
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

libschematic

A library for creating and manipulating MCEdit Schematic files.

Hits

Implementing into plugins

Best way to implement this code is to use it as a git module or Poggit virion.

Usage

Loading schematic files

try {
	$schematic = new Schematic();
	$schematic->parse("castle.schematic");
} catch (\Throwable $error) {
	// Handle error
}

Filling schematics

$schematic = new Schematic();
$boundingBox = new AxisAlignedBB();

// For generator block providers, a bounding box is required as the size is unknown in advance.
$schematic->setBlocks($boundingBox, $blockGenerator);

$blocks = [];

// For array block providers, the bounding box is calculated automatically.
$schematic->setBlockArray($blocks);

Saving schematic files

try {
    $schematic = new Schematic();
	$schematic->save("castle.schematic");
} catch (\Throwable $error) {
	// Handle error
}

Pasting schematics

$target = $player->getPosition();
foreach($schematic->blocks() as $block) {
	$target->getWorld()->setBlock($target->addVector($block->getPosition()), $block);
}
View on GitHub
GitHub Stars22
CategoryDevelopment
Updated3mo ago
Forks8

Languages

PHP

Security Score

77/100

Audited on Dec 15, 2025

No findings