Skip to content

Instantly share code, notes, and snippets.

@PJZ9n
Created May 12, 2020 15:10
Show Gist options
  • Save PJZ9n/064371c003fa5078941277bd8da1a22e to your computer and use it in GitHub Desktop.
Save PJZ9n/064371c003fa5078941277bd8da1a22e to your computer and use it in GitHub Desktop.
Dropdownでプレイヤーを選ばせる
<?php
declare(strict_types=1);
/** @var \pocketmine\Server $server */
$players = $server->getOnlinePlayers();
$options = array_map(function ($player) {
/** @var \pocketmine\Player $player */
return $player->getName();
}, $players);
$form = [
"type" => "custom_form",
"title" => "タイトル",
"content" => [
[
"type" => "dropdown",
"text" => "プレイヤーを選んでください",
"options" => $options,
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment