17.12.2011, 18:06
You are using SendClientMessage as a format. You should first use 'format(string, sizeof(string), "input"); then use SendClientMessage(playerid, color, string);
Which would look like:
The output of the message would be 'input' sending it to the defined 'playerid'.
Which would look like:
Код:
format(string, sizeof(string), "input"); SendClientMessage(playerid, color, string);

