30.12.2015, 11:29
A string specifier in sscanf needs its size defined next to it:
What is this check for?:
Sscanf already deals with an empty Message parameter and checking whether or not the player who used the command is connected seems redundant to me. After all, it is the player who used the command. It's not like a command takes minutes to execute.
PHP код:
if(sscanf(params, "z[128]", Message))
PHP код:
if(strlen(Message) < 1 || !IsPlayerConnectedEx(playerid))

