-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
168 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
<?php | ||
|
||
namespace CrazyTeamVN\SkyBlock; | ||
|
||
use pocketmine\command\Command; | ||
use pocketmine\command\CommandSender; | ||
use pocketmine\event\Listener; | ||
use pocketmine\{command\ConsoleCommandSender, Server, Player, utils\TextFormat}; | ||
use pocketmine\plugin\PluginBase; | ||
use jojoe77777\FormAPI; | ||
|
||
class Main extends PluginBase implements Listener{ | ||
|
||
public function onEnable(){ | ||
$this->getServer()->getLogger()->Info("§bSkyBlockGUI - Enabled!"); | ||
$this->getServer()->getPluginManager()->registerEvents($this, $this); | ||
} | ||
|
||
public function onCommand(CommandSender $sender, Command $cmd, string $label, array $args) : bool { | ||
$player = $sender->getPlayer(); | ||
switch($cmd->getName()){ | ||
case "sbui": | ||
$this->mainForm($player); | ||
} | ||
return true; | ||
} | ||
|
||
public function mainForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createSimpleForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
if(isset($data[0])){ | ||
switch($data[0]){ | ||
case 0: | ||
$command = "sb auto"; | ||
$this->getServer()->getCommandMap()->dispatch($player, $command); | ||
break; | ||
|
||
case 1: | ||
$command = "sb claim"; | ||
$this->getServer()->getCommandMap()->dispatch($player, $command); | ||
break; | ||
|
||
case 2: | ||
$this->addForm($player); | ||
break; | ||
|
||
case 3: | ||
$this->removeForm($player); | ||
break; | ||
|
||
case 4: | ||
$this->homeForm($player); | ||
break; | ||
|
||
case 5: | ||
$this->warpForm($player); | ||
break; | ||
|
||
case 6: | ||
$this->giveForm($player); | ||
break; | ||
|
||
case 7: | ||
$command = "hub"; | ||
$this->getServer()->getCommandMap()->dispatch($player, $command); | ||
} | ||
} | ||
}); | ||
$form->setTitle("§l§b♦§a SkyBlock §b♦"); | ||
$form->addButton("§aFind an Island"); | ||
$form->addButton("§dBuy Island"); | ||
$form->addButton("§7Add a helper"); | ||
$form->addButton("§9Remove a helper "); | ||
$form->addButton("§eBack to Your Island"); | ||
$form->addButton("§6Teleport to an Island"); | ||
$form->addButton("§2Give Island to a player"); | ||
$form->addButton("§cBack to Hub"); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
|
||
public function addForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createCustomForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
$result = $data[0]; | ||
if($result != null){ | ||
$this->Ten = $data[0]; | ||
$this->getServer()->getCommandMap()->dispatch($player, "sb addhelper " . $this->Ten); | ||
} | ||
}); | ||
$form->setTitle("Thêm Người Vào Đảo Của Bạn"); | ||
$form->addInput("Nhập Tên Người Chơi Muốn Thêm"); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
|
||
public function removeForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createCustomForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
$result = $data[0]; | ||
if($result != null){ | ||
$this->Ten = $data[0]; | ||
$this->getServer()->getCommandMap()->dispatch($player, "sb removehelper " . $this->Ten); | ||
} | ||
}); | ||
$form->setTitle("Xóa Người Ra Khỏi Đảo Của Bạn"); | ||
$form->addInput("Nhập Tên Người Chơi Muốn Xóa"); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
|
||
public function homeForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createCustomForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
$result = $data[0]; | ||
if($result != null){ | ||
$this->Home = $data[0]; | ||
$this->getServer()->getCommandMap()->dispatch($player, "sb home " . $this->Home); | ||
} | ||
}); | ||
$form->setTitle("Về Đảo Của Bạn"); | ||
$form->addInput("Nhập Số Đảo Bạn Muốn về ( ví dụ 1 , 2 ,3 ) "); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
|
||
public function warpForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createCustomForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
$result = $data[0]; | ||
if($result != null){ | ||
$this->idDao = $data[0]; | ||
$this->getServer()->getCommandMap()->dispatch($player, "sb warp " . $this->idDao); | ||
} | ||
}); | ||
$form->setTitle("Dịch Chuyển Đến Hòn Đảo Nào Đó"); | ||
$form->addInput("Nhập Theo Địa Chỉ X;Y"); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
|
||
public function giveForm($player){ | ||
if($player instanceof Player){ | ||
$formapi = $this->getServer()->getPluginManager()->getPlugin("FormAPI"); | ||
$form = $formapi->createCustomForm(function (Player $event, array $data){ | ||
$player = $event->getPlayer(); | ||
$result = $data[0]; | ||
if($result != null){ | ||
$this->Ten = $data[0]; | ||
$this->getServer()->getCommandMap()->dispatch($player, "sb give " . $this->Ten); | ||
} | ||
}); | ||
$form->setTitle("Chuyển Quyền Sở Hữu Đảo"); | ||
$form->addInput("Nhập Tên Người Muốn Chuyển"); | ||
$form->sendToPlayer($player); | ||
} | ||
} | ||
} |