Ребят,помогите,как его вниз передвинуть,вправо и влево понятно,а вот вниз и вверх нет
<?php
namespace BarTip;
use BarTip\Tasks\PanelTask;
use pocketmine\event\Listener;
use pocketmine\plugin\PluginBase;
use pocketmine\utils\Config;
class Main extends PluginBase implements Listener {
public $task;
public $auth;
public $logined = [];
public $hidden = [];
public function onEnable() {
$this->getServer()->getPluginManager()->registerEvents($this, $this);
$this->EconomyAPI = $this->getServer()->getPluginManager()->getPlugin("EconomyAPI");
$this->Economyrubin = $this->getServer()->getPluginManager()->getPlugin("Economyrubin");
$this->PurePerms = $this->getServer()->getPluginManager()->getPlugin('PurePerms');
$this->getServer()->getScheduler()->scheduleRepeatingTask(new PanelTask($this), 10);
$this->getLogger()->info("HotBar - включен");
@mkdir($this->getDataFolder());
$this->config = new Config($this->getDataFolder() . "config.yml", Config::YAML, ["name" => " "]);
$this->saveResource("config.yml");
}
public function onPanel() {
$tps = $this->getServer()->getTicksPerSecond();
foreach ($this->getServer()->getOnlinePlayers() as $p) {
if (isset($this->hidden[$p->getName()])) {
continue;
}
$name = $p->getName();
$player = $p->getPlayer()->getName();
$ppg = $this->PurePerms->getUserDataMgr()->getData($p)['group'];
$cash = $this->EconomyAPI->myMoney($name);
$rubin = $this->Economyrubin->mymoney($name);
$t = str_repeat(" ", 75);
$p->sendTip($t . "§eMuSaWorld\n\n" . $t . "§fПривелегия§7: §6" . $ppg . "§r\n" . $t . "§fДеньги§7: §a" . $cash . "\n" . $t . "§fРубины§7: §b" . $rubin . "®\n\n" . $t . "§7► §6MSW.EASYDONATE.RU\n" . str_repeat("\n", 13));
}
}
}