11.08.2015, 19:09
PHP код:
new bloquearcmd[MAX_PLAYERS];
CMD:bloquearcomando(playerid, params[])
{
bloquearcmd[playerid] = 1;
SendClientMessage(playerid, -1, "Comando bloqueado");
return 1;
}
CMD:comando(playerid, params[])
{
if(bloquearcmd[playerid] == 0)
{
SendClientMessage(playerid, -1, "Comando desbloqueado");
}
else SendClientMessage(playerid, -1, "Comando bloqueado");
return 1;
}

