Skip to content

Instantly share code, notes, and snippets.

@gollilla
Last active April 8, 2020 11:11
Show Gist options
  • Save gollilla/69f1a71770cd69d9ad42bbffa646c99f to your computer and use it in GitHub Desktop.
Save gollilla/69f1a71770cd69d9ad42bbffa646c99f to your computer and use it in GitHub Desktop.
<?php
use pocketmine\event\player\PlayerJoinEvent;
use bossbarapi\bossbar\BossBar;
class api_usage {
function onJoin(PlayerJoinEvent $ev){
$player = $ev->getPlayer();
$bossBar = BossBar::create($player);
$bossBar->setTitle("Sample");
$bossBar->setPercentage(0.2);
$bossBar->show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment