Jump to content

Ayuda con comando


Matt

Recommended Posts

Me gustaria eliminar varios comandos del server, el comando register y logout, y que al poner ese comando ejemplo:

/register.

Este comando esta desabilitado.

Como seria el script gracias :D.

Soy algo manco en script :$

Link to comment
commands = { -- Aqui van los comandos que quieras deshabilitar 
["logout"] = true, 
["register"] = true 
} 
  
addEventHandler("onPlayerCommand", getRootElement(), 
function(cmd) 
    if ( commands[cmd] ) then 
        cancelEvent() 
    end 
end) 

Link to comment

Con el permiso de Enargy

commands = { -- Aqui van los comandos que quieras deshabilitar 
["logout"] = true, 
["register"] = true 
} 
  
addEventHandler("onPlayerCommand", getRootElement(), 
function(cmd) 
    if ( commands[cmd] ) then 
         outputChatBox ( "Este comando está deshabilitado", source, 255, 0, 0) 
        cancelEvent() 
    end 
end) 

Link to comment
Con el permiso de Enargy
commands = { -- Aqui van los comandos que quieras deshabilitar 
["logout"] = true, 
["register"] = true 
} 
  
addEventHandler("onPlayerCommand", getRootElement(), 
function(cmd) 
    if ( commands[cmd] ) then 
         outputChatBox ( "Este comando está deshabilitado", source, 255, 0, 0) 
        cancelEvent() 
    end 
end) 

Olvide el outputChatBox xD, gracias.

Link to comment
  • Recently Browsing   0 members

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