29.01.2019, 16:25
Consegui resolver qui mano, mesmo assim agradeзo, vlw. +REP
PHP код:
CMD:at(playerid)
{
if(PlayerInfo[playerid][pMuted] == 1)
return SendClientMessage(playerid, -1, "Voce nao pode falar, pois foi calado");
if(IDCall[playerid] != 999)
return SendClientMessage(playerid, COLOR_GRAD2, "Voce ja esta em uma ligacao.");
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PhoneID[playerid] == i)
{
IDCall[playerid] = i; //caller connecting
SendClientMessage(i, COLOR_GRAD2, "Chama de voz iniciada... (Digite no chat para se comunicar)");
format(string, sizeof(string), "(( %s atendeu uma chamada de voz ))", NomePlayer(playerid));
SendClientMessageInRange(30.0, playerid, string, 0x66CDAAFF, 0x66CDAAFF, 0x66CDAAFF, 0x66CDAAFF, 0x66CDAAFF);
}
}
return 1;
}