maauroo Posted June 11, 2012 Share Posted June 11, 2012 Hola.. Tengo Un Zonadm y Me Gustaria Bloquear Algunos Comandos O Teleport Para Que No Alla Problemas.¿Como Lo Puedo Hacer ? En ZonaDm Tiene El Cmd /salirdm. Entonse Cuando Uno Esta Dentro De Dm, No Puede Usar Comandos, Tendra Que Salir De Zona Dm. Se Entiende? Aqui Unos De Los Teleport Y El De /salirdm: addCommandHandler ( "salirdm", function ( thePlayer ) if ( jugadoresEnDM [ thePlayer ] ) then setElementInterior ( thePlayer, unpack ( jugadoresEnDM [ thePlayer ] ) ) jugadoresEnDM [ thePlayer ] = nil end end ) function aerols ( hitPlayer, commandName, posX, posY, posZ ) if isPlayerInVehicle (hitPlayer) then setElementPosition (getPlayerOccupiedVehicle (hitPlayer),1505.0350,-2616.3782,13.5469) else setElementPosition ( hitPlayer,1505.0350,-2616.3782,13.5469) end end addCommandHandler ( "aerols", aerols ) Link to comment
Plate Posted June 11, 2012 Share Posted June 11, 2012 creo que para bloquear comandos esto sirve addEventHandler ( "onPlayerCommand", root, function( cd ) if ( cd == 'kill' ) then cancelEvent() end end ) addEventHandler("onResourceStart", getRootElement(), cancelar) creo es un ejemplo para cancelar el kill Link to comment
iFoReX Posted June 11, 2012 Share Posted June 11, 2012 y para que pones el evento onResourceStart ?, ademas la funcion cancelar no existe u.u Link to comment
Castillo Posted June 11, 2012 Share Posted June 11, 2012 Claro que va a funcionar, pero vas a tener un error en el debug script diciendo que la funcion "cancelar" no existe, ademas de que ese evento no deberia estar ahi. Link to comment
Plate Posted June 11, 2012 Share Posted June 11, 2012 esos comandos me los pasaron cuando ElMota (que le agredesco)me paso un script Link to comment
maauroo Posted June 11, 2012 Author Share Posted June 11, 2012 No Funciona.. Lo Que Intento Decir Es Por Ejemplo: Voy A /zonadm.. Me Aburri.. Intento Ir A /sanfierro Pero No Me Deja Porque Esta Bloqueado,Primero Debo Salir, Pondre /salirdm. Se Entiende? Osea Bloquear Para Que Nadie Pueda Sacar Las Armas Del Dm Que Estaba. ¿Se Entendio? Link to comment
Recommended Posts