29.12.2010, 20:24
You cannot use "SendClientMessage" like you are now. You need to format the string, including the params. Something like this should suffice for what you need now:
Show the code for your admin chat and I'll make a DCMD command for you.
pawn Код:
new string[128];
format(string, sizeof(string), "You have been kicked by %s for: %s", adminname, params[2]);
SendClientMessage(pid, AdminColor, string);