Quick help commandsSuggestion
When I type /bs I get the ArgumentsErrorMessage saying to type /bs help. It could just use the /bs help message instead and save a step.

        #region Chat Commands

        [Command("blueprintshare", "bs")]
        private void ToggleCommand(IPlayer player, string command, string[] args)
        {
            var playerUID = player.Id;

            if (args.Length < 1)
            {
                player.Reply(GetLangValue("Prefix", playerUID) + GetLangValue("HelpMessage", playerUID));

                return;
            }​
Sorry for the late response but if I understand you right you want it to display the /bs help message instead of the argument error message when typing /bs ?
Yea, I think it'd be better. After I posted I thought that the args.Length would act as error handling, but I think it only fires when /bs by itself is entered into chat. /bs canucatchthiserror doesn't do anything. I put "HelpMessage" into my file (thanks for the mod!), so I'm good. I just thought that would cut out a step.

Thanks again,
Thank you for the suggestion I can see your point and will be implementing it into the new version of the plugin which I hope to release soon once I have finished testing it.
You're a champion, thanks, dude!