04.10.2009, 10:12
Enter that under OnPlayerCommandText public:
And define this at top of the gamemode:
Hope I helped and it works 
Regards
Puzi
Код:
if(!strcmp(cmdtext, "/me", true, 3)) // 3 is the length of /me
{
if(!cmdtext[3]) return SendClientMessage(playerid, 0xFF0000FF, "USAGE: /me [action]");
new string[128], name[16];
GetPlayerName(playerid, name, sizeof(name));
format(string, 128, "*** %s %s", name, cmdtext[4]);
SendClientMessageToAll(COLOR_LIGHTGREEN, string);
return 1;
Код:
#define COLOR_LIGHTGREEN 0x00F400FF

Regards
Puzi

