Nope. You cannot use sizeof when working with strings. You need to have room for the null character in the last cell. Otherwise this will happen:
Code:
new string[1], string2[1];
string[0] = 'X';
string2[0] = 'Y';
server_print("%s, %s", string, string2);
It's gonna break after 31 characters, which is the max length of a player name.
sizeof Name = 32
charsmax(Name) = 31
No the command is not 32 cells big, I only used that because it was easy.
You need room for "/report" which is 7. Then you need 1 to make sure that it's not /reportx or whatever. And lastly 1 for the null. So Command[9] is fine.
__________________