05.02.2010, 16:30
Ok i found this Local chat inc, with the topic the guy gave this code
works fine but when i edit only the "/me" to "/b" it doesn't work :S
pawn Код:
if(strcmp(cmdtext, "/me", true, 3) == 0)
{
if(!cmdtext[3])return SendClientMessage(playerid, COLOR_RED, "USAGE: /me [text]");
new str[128];
GetPlayerName(playerid, str, sizeof(str));
format(str, sizeof(str), "*%s %s", str, cmdtext[4]);
SendLocalMessage(playerid, COLOR_PURPLE, 7, str);
return 1;
}