Matt Posted May 17, 2015 Share Posted May 17, 2015 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 . Soy algo manco en script Link to comment
Enargy, Posted May 17, 2015 Share Posted May 17, 2015 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
Calculador Posted May 17, 2015 Share Posted May 17, 2015 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
Enargy, Posted May 18, 2015 Share Posted May 18, 2015 Con el permiso de Enargycommands = { -- 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 , gracias. Link to comment
Recommended Posts