05.01.2017, 17:01
qual a dificuldade?!
Desculpe a identaзгo.
PHP код:
if(strcmp(cmd, "/CongelarEvento", true) == 0)
{
if(!IsPlayerAdmin(playerid) || (IsOrganizadorE(playerid)) return SendClientMessage(playerid,-1,"[!] Vocк nгo й adm!");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if (FoiProEvento[i])
{
if(JogadoresEventoCongelados == 0)
{
JogadoresEventoCongelados = 1;
TogglePlayerControllable(i, 0);
SendClientMessage(i,branco,"* [!] Vocк foi congelado");
return 1;
}
if(JogadoresEventoCongelados == 1)
{
JogadoresEventoCongelados = 0;
TogglePlayerControllable(i, 1);
SendClientMessage(i,branco,"* [!] Vocк foi descongelado");
return 1;
}
}
}
}
return 1;
}