MrDante Posted April 1, 2016 Share Posted April 1, 2016 (edited) 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 April 2, 2016 by Guest Link to comment
#RooTs Posted April 2, 2016 Share Posted April 2, 2016 existe sim Dante. quais comandos quer bloquear. faça uma lista q te mando o exemplo Link to comment
#RooTs Posted April 2, 2016 Share Posted April 2, 2016 -- 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
MrDante Posted April 2, 2016 Author Share Posted April 2, 2016 -- 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 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now