1. I want to interact when an admin used the "noclip" console command to ensure he is vanished.
    It seems that OnServerCommand() is not called when noclip is entered in the console.
    Is there another way to react on noclip?
     
  2. Wulf

    Wulf Community Admin

    The "noclip" is actually a client-side setting, not even a command really. It is never sent to the server. There isn't really a way to specifically check for noclip either, the best you can do is spam checks for IsFlying on the BasePlayer.
     
  3. Do you mean to check all players during OnTick()?
    Could have a notable performance impact?

    Is there a chance to create an own command which enables noclip?
    Then I could try to call the Disappear() method from the vanish plugin. (hope that is possible.)
     
  4. Wulf

    Wulf Community Admin

    Yes, it's very likely it would cause performance issues. I'd suggest looking at a plugin like FauxClip or FauxAdmin, they may have what you'd like.