lucascba Posted March 24, 2015 Share Posted March 24, 2015 Hola de nuevo comunidad, tengo una duda como puedo desactivar para que se pueda disparar misiles con el hydra?, lo que me gustaría mas seria que solo apuntando a un auto se pueda disparar. Gracias Link to comment
MTA Team 0xCiBeR Posted March 27, 2015 MTA Team Share Posted March 27, 2015 Esta el ejemplo en la Wiki, function disableFireForHydra ( theVehicle, seat ) if ( getElementModel ( theVehicle ) == 520 ) then -- if they entered a hydra toggleControl ( "vehicle_secondary_fire", false ) -- disable their fire key else -- if they entered another vehicle toggleControl ( "vehicle_secondary_fire", true ) -- enable their fire key end end addEventHandler ( "onClientPlayerVehicleEnter", getLocalPlayer(), disableFireForHydra ) Link to comment
Recommended Posts