29/05/2014

Bloqueando Funções


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



  1.  -- Tabela de comandos
  2. cmdList = {
  3.     ["register"]=true,
  4.     ["login"]=true,
  5.     ["me"]=true,
  6.     ["say"]=true
  7. }
  8.  
  9. addEventHandler("onPlayerCommand", root,
  10. function(cmdName)
  11.      if cmdList[cmdName] then
  12.           cancelEvent()
  13.      end
  14. end)


Comando "Say" removido

  1.  -- Tabela de comandos
  2. cmdList = {
  3.     ["register"]=true,
  4.     ["login"]=true,
  5.     ["me"]=true
  6. }
  7.  
  8. addEventHandler("onPlayerCommand", root,
  9. function(cmdName)
  10.      if cmdList[cmdName] then
  11.           cancelEvent()
  12.      end
  13. end)