Skip to content

Instantly share code, notes, and snippets.

View xtakumatutix's full-sized avatar
🌼
My head is a flower garden.

たくまっち Takumachi xtakumatutix

🌼
My head is a flower garden.
View GitHub Profile
<?php
use pocketmine\network\mcpe\protocol\AnimateEntityPacket;
$pk = AnimateEntityPacket::create("animation.idle_back_1", "none", "query.any_animation_finished", "", 2.0, [$player->getId()]);
$player->dataPacket($pk);
@PJZ9n
PJZ9n / floatingtext.php
Last active September 1, 2020 07:23
浮き文字
<?php
declare(strict_types=1);
use pocketmine\level\Level;
use pocketmine\level\particle\FloatingTextParticle;
use pocketmine\math\Vector3;
use pocketmine\plugin\Plugin;
use pocketmine\scheduler\ClosureTask;