Jump to content

[ DUVIDA/AJUDA ] Bloq Comandos


Recommended Posts

Galera, existe alguma forma de que todos os comandos são bloqueado, menos um que você possa digitar? exemplo, o jogador pode digitar /suborno, mas se ele digitar /cj não vai funcionar.

Existe ou não?, eu fiz uma função de bloquear comandos, mas só quero que um comando funcione

Função:

function bloqsay(commandName) 
if (commandName ~= 'say') then 
        cancelEvent() 
    end 
end 
addEventHandler("onPlayerCommand", root, bloqsay) 
  

Edited by Guest
Link to comment
 -- segue a tabela com os comandos bloqueados. remove o comando q quer desbloquear 
cmdList = { 
    ["register"]=true, 
    ["login"]=true,  
    ["me"]=true, 
    ["say"]=true  
} 
  
addEventHandler("onPlayerCommand", root, 
function(cmdName) 
     if cmdList[cmdName] then 
          cancelEvent() 
     end 
end) 

Link to comment
 -- segue a tabela com os comandos bloqueados. remove o comando q quer desbloquear 
cmdList = { 
    ["register"]=true, 
    ["login"]=true,  
    ["me"]=true, 
    ["say"]=true  
} 
  
addEventHandler("onPlayerCommand", root, 
function(cmdName) 
     if cmdList[cmdName] then 
          cancelEvent() 
     end 
end) 

Huuuuum, entendi, obrigado :D

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...