Jump to content

Ayuda Comando


NIKO_19997

Recommended Posts

hola, como puedo hacer que cuando vuelva a poner el comando /muro se desaparesca el objeto? lo unico que creo que me puede server es la funcion destroyElement, aqui el script:

function tankHat ( source, commandName ) 
      local x, y, z = getElementPosition ( source )  
      local tank = createObject ( 10828, x, y, z+5 )  
      attachElements ( tank, source, 0, 10, -2 )  
      setElementCollisionsEnabled (tank, true) 
  else 
      destroyElement (tank, true) 
    end   
end 
addCommandHandler ( "muro", tankHat ) 

Saludos y espero me puedan ayudar! :D

Link to comment
function tankHat ( source, commandName ) 
   if tank then 
       destroyElement (tank) 
   else 
      local x, y, z = getElementPosition ( source )  
       tank = createObject ( 10828, x, y, z+5 )  
      attachElements ( tank, source, 0, 10, -2 )  
      setElementCollisionsEnabled (tank, true) 
    end   
end 
addCommandHandler ( "muro", tankHat ) 

Link to comment
function tankHat ( source, commandName ) 
   if tank then 
       destroyElement (tank) 
   else 
      local x, y, z = getElementPosition ( source )  
       tank = createObject ( 10828, x, y, z+5 )  
      attachElements ( tank, source, 0, 10, -2 )  
      setElementCollisionsEnabled (tank, true) 
    end   
end 
addCommandHandler ( "muro", tankHat ) 

funciona, pero al sacarlo y intentar ponerlo denuevo no lo vuelve a poner :cry:

Link to comment
  • Recently Browsing   0 members

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