Guest User

Untitled

a guest
Nov 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. namespace TheDeibo\MyIPandPort;
  3.  
  4. use pocketmine\plugin\PluginBase;
  5. use pocketmine\utils\Utils;
  6.  
  7. class Main extends PluginBase {
  8.  
  9. public function onEnable() {
  10. echo("Server IP : " . Utils::getIP() . "\n");
  11. echo("Server Port: " . $this->getServer()->getPort() . "\n");
  12. }
  13. }
Add Comment
Please, Sign In to add comment