Olá amiguinhos, venho trazer pra vocês uma simples função pra bloquear os comandos que não tem como tirar de nenhum outro RESOURCE do MTA:SA
São os comandos
register, login, me, e say
Obs: se bloquear o comando "Say" talves ninguem conseguirá falar no
chat, então você pode remove-lo
São os comandos
register, login, me, e say
Obs: se bloquear o comando "Say" talves ninguem conseguirá falar no
chat, então você pode remove-lo
- -- Tabela de comandos
- cmdList = {
- ["register"]=true,
- ["login"]=true,
- ["me"]=true,
- ["say"]=true
- }
- addEventHandler("onPlayerCommand", root,
- function(cmdName)
- if cmdList[cmdName] then
- cancelEvent()
- end
- end)
Comando "Say" removido
- -- Tabela de comandos
- cmdList = {
- ["register"]=true,
- ["login"]=true,
- ["me"]=true
- }
- addEventHandler("onPlayerCommand", root,
- function(cmdName)
- if cmdList[cmdName] then
- cancelEvent()
- end
- end)