Page 1 of 12 1234511 ... LastLast
Results 1 to 10 of 116

Thread: HALO, how to add it ?

  1. #1

  2. #2
    Write this in a trigger

    Name_of_Aircraft lock false;
    Name_of_Player action [ "eject", BIS_MV22];
    Name_of_Player setvelocity [0,0,0];
    [Name_of_Player] exec "ca\air2\halo\data\Scripts\HALO_getout.sqs";
    Regards Intruder

  3. #3
    thanks I will try

  4. #4
    Quote Originally Posted by Intruder_GER View Post
    Write this in a trigger



    Regards Intruder
    all you need is > [this] exec "ca\air2\halo\data\Scripts\HALO_getout.sqs" < in each units inits unless you wanna force the Eject then u need a Para jump script

  5. #5
    Warrant Officer
    Join Date
    Jul 31 2008
    Location
    North America
    Posts
    2,567
    Thanks, this works great

  6. #6
    Yes, it does work great! However, is there a way to make it so you can HALO after you respawn. Using the method Junker posted works great initially, but if you respawn and want to HALO or HAHO again, it doesn't work. Any help is appreciated.

    Thanks,
    Monty

  7. #7
    it don't work for me because I don't want to use after ejecting a plane but after a setpos at 2000 meter

  8. #8
    Master Sergeant Icewindo's Avatar
    Join Date
    Jun 28 2006
    Location
    Imperium Romanum
    Posts
    719
    Quote Originally Posted by monty67t View Post
    Yes, it does work great! However, is there a way to make it so you can HALO after you respawn. Using the method Junker posted works great initially, but if you respawn and want to HALO or HAHO again, it doesn't work. Any help is appreciated.

    Thanks,
    Monty
    Try it this way, create a init.sqf in the mission folder which contains this:
    [] execVM "bla.sqf";

    And put this into the bla.sqf
    while {true} do {
    waitUntil {!alive player};
    _p = player;
    waitUntil {alive player};
    _p = player;
    _p exec "ca\air2\halo\data\Scripts\HALO_getout.sqs";
    };

  9. #9
    Quote Originally Posted by gonza View Post
    it don't work for me because I don't want to use after ejecting a plane but after a setpos at 2000 meter
    found
    after a setpos you must use
    [player] exec "ca\air2\halo\data\Scripts\HALO.sqs";


  10. #10
    Using the above method, doesnt allow you to control the direction of your descent before opening you chute. Is there anyway of getting full HALO control using the setpos?

Page 1 of 12 1234511 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •