09.04.2011, 10:28
Check your code(s):
Edit: Next time please check your Code(s) b4 posting.
pawn Код:
CMD:do(playerid, params[])
{
new pName[25], str[128];
if(!strlen(params[0])) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /do [action]");
GetPlayerName(playerid, pName, 25);
format(str, 128, "%s (( %s ))", str, pName);
SendClientMessageToAll(COLOR_ORANGE); // no str? o.O ,
// it should be
SendClientMessageToAll(COLOR_ORANGE, str);
// i think you're cpng n' pstng that's why you frgt or something :P
return 1;
}