I was looking to add multiple chat commands such as /store /shop /s to allow a better end-user experience. How would this be completed?
Sample section that I would like to add multiple commands:
#region Commands
[ChatCommand("shop")]
private void cmdStore(BasePlayer player, string command, string[] args)
{
if ((configData.Options.NPCOnly && IsAuthed(player)) || !configData.Options.NPCOnly)
{
OpenStore(player);
}
}