Jump to content

[Ayuda] no me funciona este script


Nicolas ECM

Recommended Posts

Hola a todos, tengo un problema con este script se crea el marker normal cuando uso el comando /a, cuando algun jugador entra a ese market se deberia morir y escribirle has caido pero no funciona me podrian ayudar porfavor, otra duda como se puede hacer para que al entrar al market se le quite el 30% de la vida al jugador que entro, porfavor ayuda :D .

function ard (thePlayer) 
local x, y, z = getElementPosition ( thePlayer ) 
local theMarker = createMarker ( x + 2, y + 2, z, "cylinder", 1.5, 255, 255, 0, 170 ) 
end 
addCommandHandler ("a", ard) 
  
  
function MarkerHit(thePlayer) 
        if getElementType ( thePlayer ) == "player" then  
            killPed ( thePlayer ) 
            outputChatBox ( "has caido", thePlayer ) 
        end 
end 
addEventHandler( "onMarkerHit", theMarker, MarkerHit ) 
  

Link to comment
  
function ard (thePlayer) 
local x, y, z = getElementPosition ( thePlayer ) 
local theMarker = createMarker ( x + 2, y + 2, z, "cylinder", 1.5, 255, 255, 0, 170 ) 
addEventHandler( "onMarkerHit", theMarker, MarkerHit ) 
end 
addCommandHandler ("a", ard) 
  
  
function MarkerHit(thePlayer) 
        if getElementType ( thePlayer ) == "player" then 
            killPed ( thePlayer ) 
            outputChatBox ( "has caido", thePlayer ) 
        end 
end 
  

Link to comment
  • Recently Browsing   0 members

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