Как зделать что бы только Админ мог открывать ворота вот пример пожалуйста исправте + обеспечен ! public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/aopen", true)==0)
{
if(gTeam[playerid] == 11)
{
MoveObject(gate12, 1600.460,-710.612,97.141, 4);
SetTimer("Close", 9000, 0);
SendClientMessage(playerid, COLOR_GREEN,"Ворота открыты и закроються через 9 сек");
}
else //
{
SendClientMessage(playerid, COLOR_GREY, " Вы не Лицензёр !");
return 1;
}
return 1;
}
return 0;
}