Jump to content

bigalexe

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

Community Reputation

1 Neutral

About bigalexe

  • Rank
    Newbie
  1. bigalexe

    LIFTER for ArmA 3

    I just started playing with your addon today and have 2 questions about it's capability. I've tried experimenting and can't find the answer. First is there a way through editing the individual scenario or the addon itself that I can adjust the lifting "power" of helicopters? I really like the way you've balanced it out realistically but for the sake of gameplay I'd like to be able to adjust things universally or at least in a scenario set it up so that Vehicle X can be lifted by anything regardless of power/weight. Second question is if the mod gives any helicopter available in Vanilla A3 or the HAFM Helicopters pack the ability to airlift the "DEVICE" found in A3 either individually or attached to the Tempest truck. Thanks for whatever you can figure out.
  2. bigalexe

    Dynamic Helo transport

    I've been trying to do the same thing or something similar for most of the day. I threw together a land navigation mostly for training purposes. The goal of the scenario was that your team spawns in random locations (on hard difficulty so not markers on the map) with flares, and compasses. In order to "win" the scenario you need to get back to base. You could either all walk back or if you found one another you could call for a heli extraction. I handled the finding eachother with some cascading triggers and some logic statements and was able to get a heli called up on the radio but landing became an issue. Here's what I ended up with after reading your script and messing with a few things... Put the following into the Init section of your transport trigger... LZ = "Land_helipadempty_F" createVehicle getPos Player; Then if you really want you can put a deletion parameter in once you take off. This line and this line alone creates an empty helipad where the player is standing when the trigger is set off. However it's on the player to make sure that's a clear area. The cool thing about this method is that you can actually waypoint a chopper to a player directly and that waypoint is permanently attached. So no matter where you are on the map the chopper will come get you. Note that I prefer to do my extractions and insertions with persistent vehicles.
×