1. I run into the same issue. CommandCallback. I have no idea what to do with it
     
  2. Wulf

    Wulf Community Admin

    Could you show me your code please?
     
  3. Code:
    AddCovalenceCommand(new[] { "player." + KingName, KingName }, new[] { "pluin.permission" }, CommandCallback);
    [DOUBLEPOST=1484598277][/DOUBLEPOST]A bit sloppy I know but its asking for a CommandCallback
     
  4. Wulf

    Wulf Community Admin

    Code:
    AddCovalenceCommand(new[] { "player." + KingName, KingName }, "MethodToCallInYourPluginLikeMyExamplesHave", "plugin.permission");
    ;)
     
  5. Did this recently change in a oxide update within the last month or so? I only get one allowed format for
    Code:
    AddCovalenceCommand(string[] Commands, string[] Permissions, CommandCallback callback)
     
  6. Wulf

    Wulf Community Admin

    This method was only available within the past few weeks. The usage is what I provided previously. There are multiple ways of using it, but what you need is the method I mentioned.