1. Ok so I have made a Extension to manage a Ban System between all my servers. One thing that gets me is registering a plugin to hook methods. For Example OnUserConnected and CanClientLogin. I have noticed the Method inside Plugin Manager for AddPlugin(Plugin plugin) I've noticed it does't have all the features of CovalencePlugin already has like [Command("")] is there a easier method or do I need to create a new plugin manager for my extension?
     
  2. Wulf

    Wulf Community Admin

    Attributes like that would not be available to your plugin unless it is a CovalencePlugin. You can see a "plugin" example for extensions in our GitHub repo, where Oxide.Game.Rust and the other game extensions all have plugins inside of them. For things like [Command], manually registration also exists, which is what these game extensions use.
     
  3. Hmm. Will try that out