06.07.2015, 01:56
Try this
Код:
if(strcmp(cmd, "/showpms", true) == 0)
{
if (PlayerInfo[playerid][pAdministrator] >= 1)
{
if(AscultaPM[playerid] == 0)
{
SendClientMessage(playerid, COLOR_YELLOW, "Acum asculti PM-urile de pe server.");
AscultaPM[playerid] = 1;
}
if(AscultaPM[playerid] == 1)
{
SendClientMessage(playerid, COLOR_YELLOW, "Acum nu mai asculti PM-urile de pe servr.");
AscultaPM[playerid] = 0;
}
}
}

