Ejemplo n.º 1
0
 public function onCommand(CommandSender $sender, Command $cmd, $label, array $args)
 {
     if (strtolower($cmd->getName()) === "megajoin") {
         if (isset($args[0])) {
             if ($sender instanceof Player) {
                 $status = $args[0];
                 $sender->setNameTag(implode("<-*->"));
                 $sender->sendMessage("You Joined the match!");
                 $sender->OnStart();
             }
         }
     }
 }