Add register_chatcmd

This commit is contained in:
OciXCrom 2018-08-29 20:19:33 +02:00
parent 56e8dcf3d5
commit 4261087a54

View File

@ -869,3 +869,32 @@ stock get_players_ex(players[MAX_PLAYERS], &num, GetPlayersFlags:flags = GetPlay
get_flags(_:flags, strFlags, charsmax(strFlags));
get_players(players, num, strFlags, team);
}
/**
* Registers a chat command that can be executed via both "say" and "say_team".
*
* @note For a list of possible access flags, see the ADMIN_* constants in
* amxconst.inc
* @note Opting in to FlagManager enables the admin privileges to be overwritten
* by the end user via the cmdaccess.ini config file.
* @note Automatic detection for FlagManager will only include a command if it
* has required privileges (flags is not -1) and it is not a command
* starting with "say".
*
* @param client_cmd Command to register
* @param function Callback function
* @param flags Admin privilege flags required
* @param info Command description
* @param FlagManager 0 opts out of flag manager, 1 opts in, -1 selects
* automatically
* @param info_ml If true, the parameter "info" will be looked up as multilingual key
*
* @noreturn
* @error If an invalid callback function is specified, an error
* will be thrown.
*/
stock register_chatcmd(const client_cmd[], const function[], flags = -1, const info[] = "", FlagManager = -1, bool:info_ml = false)
{
register_clcmd(fmt("say %s", client_cmd), function, flags, info, FlagManager, info_ml);
register_clcmd(fmt("say_team %s", client_cmd), function, flags, info, FlagManager, info_ml);
}