30.11.2012, 12:57
Eu uso /PC qe й o comando para falar com as pessoas da mesma profissao e ela manda mensagem para todos.
pawn Код:
if(strcmp(cmd,"/pc",true)==0)
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
strmid(tmp,cmdtext,3,strlen(cmdtext));
if(!strlen(tmp)) {
SendClientMessage(playerid,Vermelho,"/pc [texto]");
return 1;
}
else {
format(string, sizeof(string), "| Profissгo Chat | %s diz: %s", aname, tmp);
Chatp(GetPlayerColor(playerid),string,1,playerid);
return 1;
}
}