23.05.2016, 11:24
Problem is
and
in Code 1 you store message in size of 256 chars but in second code you show if size of message is more then 128 chars, it gives error.. i think you should change either sizes.. check if it works
Код:
if(sscanf(params, "s[256]", message)) return SCM(playerid, COLOR_GREY, SYNTAX_MESSAGE"/report [text]");
Код:
if( strlen( message ) > 128 )