Is there any chance of having the chat commands defined in the config so we can change them? In particular /callheli with the reason being many players ask why /callheli doesn't work for them, and I then have to explain it's /callheli <name> or /callheli <SteamID>. If I can change the /callheli command without changing the code it will stay up to date without me having to edit the code every time the plugin is updated. Then I can add parameters to the command using the CustomChatCommands plugin.

https://umod.org/plugins/custom-chat-commands

Example. Let's say I redefine the callheli command in the config to cheli. I can then use the CustomChatCommands plugin to redefine the callheli command like this:-

     {
       "Command": "callheli",
       "Messages": null,
       "Permission": "customchatcommands.default",
       "ConsoleCmd": [
         "cheli {steamid}"
       ],
       "UserID": 0,
       "Broadcast": false,
       "RconCmd": null,
       "Cooldown": 0.0,
       "MaxUses": 0
    }​

In that way the steamid of the player will be added when the newly defined /callheli command is used.

Thanks.