Jump to content

Ayuda con un script


Soren

Recommended Posts

Hola a todos necesito ayuda con un script que me paso mi buen amigo Benxamix2 pero al momento de intentar usarlo no sirvio aqui el script i hay algo mal fdiganme o si me pueden ayudar a hacer uno por que soy pesimo con lo que se trate de scripts

ids = { "Marker (corona)(1)", "Marker (corona)(2)" } 
addEventHandler ( "onMarkerHit" ,getResourceRootElement ( ), 
    function ( element )  
        if ids[getElementID ( source )] and getElementType ( element ) == "player" then 
            giveWeapon ( element, 38, 500, true )  
            setPedDoingGangDriveBy ( element, true )  
        end 
    end ) 

Porfavor ayuda

Link to comment
ids = { ["Marker (corona)(1)"] = true, ["Marker (corona)(2)"] = true } 
addEventHandler ( "onMarkerHit" ,getResourceRootElement ( ), 
    function ( element ) 
        if ids[getElementID ( source )] and getElementType ( element ) == "player" then 
            giveWeapon ( element, 38, 500, true ) 
            setPedDoingGangDriveby ( element, true ) -- Es "by" not "By". 
        end 
    end ) 

Link to comment
ids = { ["Marker (corona)(1)"] = true, ["Marker (corona)(2)"] = true } 
addEventHandler ( "onMarkerHit" ,getResourceRootElement ( ), 
    function ( element ) 
        if ids[getElementID ( source )] and getElementType ( element ) == "player" then 
            giveWeapon ( element, 38, 500, true ) 
            setPedDoingGangDriveby ( element, true ) -- Es "by" not "By". 
        end 
    end ) 

Cierto!! no lo habia visto!!! hahahahhaa gracias

Link to comment
  • Recently Browsing   0 members

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