Jump to content

Lala14

Member
  • Content Count

    646
  • Joined

  • Last visited

  • Medals

Everything posted by Lala14

  1. I added in a variable called MDMineDetectorDistance at the top of the script which you can change to a specific distance radius. download dev (version 0.62) hmm for some reason dropbox is not syncing, I'll see if I can fix it or I may post another mirror just worked
  2. diag_tickTime might be what you're looking for.
  3. Lala14

    Varying Classnames?

    if (!({tolower(_x) find "tf_anprc152" > 0} count (assignedItems player) > 0)) then {player linkItem "tf_anprc152";} else {hint "Radio Found!";};
  4. Lala14

    United States Air Force( 2015)

    People have been reporting issues with the current system for the GPS/INS System so yea. The AC-130 Spectre contains scripts to allow for autopilot and such to circle around a target.
  5. Lala14

    United States Air Force( 2015)

    It will be fixed in the next update. I said before that a new system is being worked on.
  6. Lala14

    United States Air Force( 2015)

    You would have to fly it out or you could use a tow script or tow mod such as Lesh's Tow Mod Here is a compatibility patch for it (this covers ALL units in USAF, each vehicle has its own pbo file (add it to addons in USAF)) (I did just make this now and there is some missing documentation about Lesh's Tow Mod however if there is any issues I'll try to fix it).
  7. Lala14

    United States Air Force( 2015)

    use this code in their inits in the mission editor: this animate ["engine_prop_1_1_turn", 1, true]; this animate ["engine_prop_1_2_turn", 1, true]; this animate ["engine_prop_1_3_turn", 1, true]; this animate ["engine_prop_2_1_turn", 1, true]; this animate ["engine_prop_2_2_turn", 1, true]; this animate ["engine_prop_2_3_turn", 1, true]; this animate ["engine_prop_1_1_close", 1, true]; this animate ["engine_prop_1_3_close", 1, true]; this animate ["engine_prop_2_1_close", 1, true]; this animate ["engine_prop_2_2_close", 1, true]; this animate ["pack_engine_1", 1, true]; this animate ["pack_engine_2", 1, true]; this animate ["turn_wing", 1, true];
  8. Lala14

    United States Air Force( 2015)

    Another system is currently being created to replace the current GPS system.
  9. Lala14

    United States Air Force( 2015)

    Are you able to provide the specific vehicle you were trying to put into the cargo? I tried the quadbike on each plane and it worked as intended. The RHS thing occurs normally due to an issue with the model's position. I'll work on trying to fix the RHS thing, however are you able to possibly show a video?
  10. Lala14

    Scripting help

    I'm really confused as what you're trying to achieve, some syntaxes are incorrectly used. try this out, server things can also be fixed. _trg setTriggerStatements ["{alive _x && {_x in thislist}}","execVM 'InjCash.sqf'; hint 'Civilian found'", "hint 'no civilian found'"];
  11. Lala14

    United States Air Force( 2015)

    What plane were you using and what vehicle. I can't replicate anything without this information.
  12. Lala14

    United States Air Force( 2015)

    the f35b will be in its own mod.
  13. Lala14

    United States Air Force( 2015)

    Fuller's computer is currently being repaired, once he gets his computer back I believe all issues will begin to be worked on.
  14. Lala14

    United States Air Force( 2015)

    From armaholic page of ACE 3 Known issues:
  15. Lala14

    United States Air Force( 2015)

    There was a patch released to fix that file. Here is the link https://www.dropbox.com/s/m2zb9tuqiiisviv/ldl_ac130.pbo.USMIL.bisign?dl=0
  16. Actually you cannot use deleteVehicle on "terrain" (or pre placed map) objects. However you can use hideObject (or hideObjectGlobal) to accomplish this.
  17. hmm now that is something that I've never experienced. Could be the file type? I usually will make it a .png and that use TexView2 to convert it to a .paa
  18. the actual file it self needs to be like that size.
  19. Make sure its like 2 x 2 or 4 x 4 or 16 x 16 (so on) (basically needs to be a square that is squared) (so I'd suggest having it 512 x 512)
  20. I've personally made a "battlefield" style version of this where one you go outside the zone it will give you a 10 second count down until the person will just die. This can all be done via a trigger. And then we can have the areas open up after certain things are completed via a variable of some sorts. If this is to be a mod then no, simply not, I would release it and tell people about how it's not finished (just like kunduz afghanistan map mod did)
  21. Lala14

    United States Air Force( 2015)

    Just like real radar it can only pick up moving targets, otherwise it will assume its part of the terrain.
  22. Lala14

    United States Air Force( 2015)

    there is no list for the classnames of the planes currently posted, however one way you can find out is if you go into the editor and place down whichever plane you looking for and it will come up on the top right of the dialog box. Also everything that was made by the usaf team has a prefix of USAF_ so that may help you as well.
  23. Lala14

    United States Air Force( 2015)

    what jet were you guys in?
  24. replace if (player == _killer) && ({side_target == East})) then { with if ((player == _killer) && (side _target == East)) then {
×