03.04.2010, 07:12
Ok... So this has been pising me off for about two days. Civilians can see my radio messages and use my radio. I dont kno why though.
Heres the Code that the radio usews to send it to teams.
But I don't know why it's doing this.... Mabye someone cna help me.... I dont know If I coded it wrong.
Heres the Code that the radio usews to send it to teams.
pawn Код:
SendMessageToLaw(const str[])
{
for (new i = 0; i < MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i)) {
if (gteam[i]==Team_FBI || gteam[i]==Team_SFPD || gteam[i]==Team_LVPD || gteam[i]==Team_SASP || gteam[i]==Team_DCP || gteam[i] == Team_DCPT || L1A[i]==1 || gteam[i]==Team_GOV) {
SendClientMessage(i, COLOR_CRIMBLUE, str);
}
}
}
}