27.08.2011, 21:52
Hello,
I'm create some simple commands, but this one doens't work. It's just strange since I don't see the fault.
I've used those command before and those just worked. This one not:
When I am ingame the output is just:
*
I'm create some simple commands, but this one doens't work. It's just strange since I don't see the fault.
I've used those command before and those just worked. This one not:
pawn Code:
//-----[Me]-----
CMD:me(playerid, params[])
{
if(sscanf(params, "s", playerid)) return SendClientMessage(playerid, COLOR_WHITE, ""#COL_DGREY"[CMD] / "#COL_SGREY"[Action]");
new string[128], text[64], pName[24];
GetPlayerName(playerid,pName,128);
format(string,sizeof string,"* %s %s",pName,text);
SendClientMessageToAll(COLOR_RED,string);
return 1;
}
*