1. How to set one value into two ChatCommand in C#?
    Example:
    I have
    [ChatCommand("who")]
    I need
    [ChatCommand("who")] and [ChatCommand("online")]
     
  2. Wulf

    Wulf Community Admin

    You'd need to register the command the other way:
    Code:
    command.AddChatCommand("who", this, "CmdOnline");
    command.AddChatCommand("online", this, "CmdOnline");