View Single Post
Whai
Senior Member
Join Date: Jul 2018
Old 07-10-2019 , 12:29   Re: [HELP] ERROR: function prototypes do not match
Reply With Quote #2

From console.inc :

PHP Code:
/**
 * Called when a generic console command is invoked.
 *
 * @param client        Index of the client, or 0 from the server.
 * @param args            Number of arguments that were in the argument string.
 * @return                An Action value.  Not handling the command
 *                        means that Source will report it as "not found."
 */
typedef ConCmd = function Action (int clientint args); 
so your
PHP Code:
public Action Command_hidetag(const char[] sCommandint iClientint sArgs
does not match.
__________________

Last edited by Whai; 07-10-2019 at 12:29.
Whai is offline