14.03.2011, 09:56
Quote:
nopes... /me isn't working for me again :P
there, I have taken a SS: |
pawn Код:
dcmd_me(playerid, params[])
{
new pName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_RED, "/me <local IC chat>");
format(string, sizeof(string), "%s %s", pName, params);
SendClientMessageToAll(COLOR_PINK, string);
return 0;
}