1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Block Command

Discussion in 'Development' started by fevio, Apr 28, 2020.

  1. fevio

    fevio Spider Jockey

    Messages:
    33
    It's possible block all command except one?
     
  2. kriskotooBG

    kriskotooBG Spider Jockey

    Messages:
    46
    GitHub:
    kriskotoobg
    For a single player or the whose server?
     
  3. fevio

    fevio Spider Jockey

    Messages:
    33
    In a server with more player
     
  4. GamakCZ

    GamakCZ Zombie Pigman

    Messages:
    598
    GitHub:
    GamakCZ
    It is possible.

    PHP:
    $whitelistedCommands = ["gamemode"];
    foreach(
    $this->getServer()->getCommandMap()->getCommands() as $command) {
        if(!
    in_array($command->getName(), $whitelistedCommands)) {
            
    $this->getServer()->getCommandMap()->unregister($command);
        }
    }
     
    Last edited: Apr 30, 2020
    fevio likes this.
  5. fevio

    fevio Spider Jockey

    Messages:
    33
    Thanks
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.