27.08.2011, 22:00
PHP Code:
CMD:me(playerid, params[])
{
new pName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, pName, sizeof(pName));
if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, ""#COL_DGREY"[CMD] / "#COL_SGREY"[Action]");
format(string, sizeof(string), "* %s %s", pName, params);
SendClientMessageToAll(COLOR_RED,string);
return 1;
}