Jump to content

f2k sel

Member
  • Content Count

    4462
  • Joined

  • Last visited

  • Medals

  • Medals

Everything posted by f2k sel

  1. setFormDir worked on the the unit in the turret in A2 not the turret. The lights in A3 have no crew so it can't work, even trying it on a static gunner yields no results in A3 so they have removed the option. Just digging through some old code I found this, it attaches the A3 light to a turret (tank or static gunner ect) SearchLight1 attachTo [st1, [0,0,0.3], "OsaVeze"]; addMissionEventHandler ["Draw3D", { SearchLight1 setVectorDirAndUp [ (st1 selectionPosition "usti hlavne") vectorFromTo (st1 selectionPosition "OsaHlavne"), [0,0,1] ]; }]; You can then make the static gunner invisible just leaving the light. To rotate it use something like this st1 being the static turret, to keep it moving it will need to be in a loop of course. It may not work in MP but I never tested it. st1 dowatch ( st1 modelToWorld [-200 + (random 400),100,0]) For a better light there is an addon at Armaholic I think.
  2. f2k sel

    Pilot AI problem help is appreciated

    This happens when they are set too high, it's bug/feature that's never been addressed in years.
  3. Well you would need to place it in a loop but then you may want it choose different targets ect The best thing would be to look for a Shooting range script many have been made.
  4. I did on Oct 19 but got zero replies, I was begining to think it was just me with this issue. BTW it's seems to be fixed for me today all, maps loading 1-2 seconds. Although someone else posted the opposite.
  5. It's working for me man dotarget target; 0=[] spawn {sleep 1.5; 0 = man forceWeaponFire [currentWeapon man,"single"]}
  6. That wasn't the case but today's patch seems to have fixed this issue for me and all maps seem to be loading as they were a few months back.
  7. After today's patch my game won't run crashes out with memory could not be written error, it was fine just before the patch and all files are verified. Tried another and new profile with the same result, no mods installed. Never mind it's my fault, I had enabled MSI After Burner this morning and forgot to turn it off as it causes this crash.
  8. You will need to use Forceweaponfire https://community.bistudio.com/wiki/forceWeaponFire it's no ideal but it kind of works. I don't think it uses the AI calculations so sometimes it's a bit off. I really hate that you can't just mark any target a treat and have AI shoot at it using true calculations, it's very strange for a shooting based game that makes it difficult to shoot things.
  9. f2k sel

    AI Discussion (dev branch)

    I hate this aspect of the game it's such an exploit. If the player doesn't know if a vehicle has a crew or not just let the AI take a look and they will report back if it's a threat, then if it's not you can walk up to it without a care in the World.
  10. I asked about the increase in map loading time a month back but had no replies. All maps seem to load slowly around 20secs with the exception of Tanona which it almost instant. Also the game seems to take a little longer in booting with a recent patch.
  11. Can't you use cursorobject in a loop, I used it yesterday and could see plants and trees. Maybe some objects still don't register though.
  12. Not really seeing an issue, I moved units in using moveinany they drive off and stop. I ran your eject script and then tried to get them to get in another vehicle they did so without an issue.
  13. A few weeks back after one of the beta updates all but VR and Tanona are now slow to load, it may only be about sixteen seconds but when editing it's an eternity. It seems to load the maps from scratch every time where previously only the first time would be slow. Tanona seems fine and it almost instant second time around, I've verified on steam but it says it's all fine. I don't want to re-install it takes forever on my connection, any one else with this issue using beta version?
  14. Load times have drastically increased in the current build it's gone from 2 seconds to around 16. Previously only the fist time you run the map would take longer than a couple of seconds. Tanona and VR seem fine it's the other three that are very slow.
  15. f2k sel

    AI Driving - Feedback topic

    I've had a quick look and now I'm confused, tank M4 Scorcher worked ok with me as commander and so did the Hunter CMG but when commanding the Prowler nothing happens. I tried commander gunner and driver and only being driver works. I also made my self leader but still won't move using the direction keys, it only moves if I select a waypoint or issue a move from menus. On aside note we really need a way to have the AI driver resume waypoint paths not just the next waypoint but the full path.
  16. This may work it did for some missiles _missile = createVehicle ["M_Titan_AT", [4000, 4000, 2], [], 0, "NONE"]; _missile enablesimulation false; or dud = createSimpleObject ["M_Titan_AT", [4000, 4000, 2]]; you may need to increase the height, using createSimpleObject makes them spawn low.
  17. f2k sel

    Is there Tankshells model

    place a game logic and adjust the height to 1 meter so you can see the result and then place this in the init dud = createSimpleObject ["M_Titan_AT", getposASL this]; Just try different class names and see which work and which don't
  18. Have you tried placing wheel chocks? Just spawn or place close to the plane.
  19. That does work and so does just using a MOVE WP in some instances. I'm not at the right PC now but I think this was the mission I made with some slight changes using logic as locations. https://www.sendspace.com/file/b663i8
  20. It works fine what's the issue? I get this assuming _newGroup has been defined 1. AI moves to the 'HOLD' waypoint until West leave the trigger 2. 'HOLD' waypoint is released 3. nothing actually happens though as you don't have anything after the 'HOLD' waypoint.
  21. I tried the old trick of ungrouping the unit and the regrouping him. The Stop commands is no longer displayed but it won't move when using domove and when you do use domove again the stop action reappears. However if you don't have it rejoin the group domove does work until it rejoins the group then it stops again. I wonder how they are stopping the unit, it's not commandstop because if you use that dofollow and domove will work.
  22. f2k sel

    AddAction breaking me

    I've never seen a Preprocessor error, have you verified the game in steam to make sure all files are installed correctly. this worked fine for me. act1 = u1 addaction ["Join group","join.sqf",0,1, true, true,"test2"];
  23. f2k sel

    AI Discussion (dev branch)

    I've always thought that AI if not doing something should always at the very least glance in the direction of any gunshots or explosions even if some distance away. I can't stand it if your shooting at an enemy and other units don't turn around to engage unless the enemy unit returns fire.
  24. f2k sel

    AI Driving - Feedback topic

    If you can get vehicle from A to B without issues then you at least have something to build upon, adding more complex stuff to something that's broken can't make it better.
  25. try null=[] spawn {sleep 0.5;onteamswitch {_from enableAI "TEAMSWITCH"}} when using init box.
×