1. Missing Parameters in Message "UsageFriend"
127| ["UsageFriend"] = "Usage {0} <add|remove|list> <player name or id>" The message "UsageFriend" contains one value
398| Message(player, "UsageFriend");
But the parameter is empty on line 398. This causes an error.
2. Incorrect parameters when invoking FindPlayer method
419| IPlayer target = FindPlayer(args[0], player);
Use args[0] as a parameter when running FindPlayermethod on line 419; however, the command's 0th parameter is "add" and must be modified to args[1] because the [1] parameter contains the name of the player.
127| ["UsageFriend"] = "Usage {0} <add|remove|list> <player name or id>" The message "UsageFriend" contains one value
398| Message(player, "UsageFriend");
But the parameter is empty on line 398. This causes an error.
2. Incorrect parameters when invoking FindPlayer method
419| IPlayer target = FindPlayer(args[0], player);
Use args[0] as a parameter when running FindPlayermethod on line 419; however, the command's 0th parameter is "add" and must be modified to args[1] because the [1] parameter contains the name of the player.
Maybe the problem I found was wrong.Please review :)