cpl_hicks 2 Posted January 31, 2014 I would like to setup different positions to call out in realtime for example when I radio alpha it will: Unit1 attachTo [A-10,[-0.4,4.9,1.8]]; if I radio bravo it goes to a different location: Unit1 attachTo [A-10,[2.4,5.0,-1.8]]; Is this even possible? Thanks Share this post Link to post Share on other sites
tryteyker 28 Posted January 31, 2014 Tried putting it in the onact of a radio trigger? Ofcourse this' ll work Share this post Link to post Share on other sites
cpl_hicks 2 Posted January 31, 2014 Well I will try and give an example of what didnt work: 3 items in play here: 1. the A10 (already has a flight path from me flying and capturing the positions using the script recorder unitcapture) 2. unit1 (the soldier/camera guy) 3.the trigger What I do is place: Unit1 attachTo [A-10,[-0.4,4.9,1.8]]; into the init of the A10 so that unit1 (cameraguy) gets attached to the a10 so I can have him film a distinct position on the a10. So far it works great as I'm filming on top of the a10 in one position but then lets say mid flight I want to then switch to another predetermined position like on the bottom do I just then add a trigger under say on action radio delta to (Unit1 attachTo [A-10,[2.4,5.0,-1.8]];).......well this doesn't work, is this supposed to work like that? Share this post Link to post Share on other sites
KC Grimes 79 Posted February 1, 2014 detach Unit1; I suggest making all of your triggers repeatable, and before the attachTo line in each, simply put the detach command as linked/exampled above. Done n done. Share this post Link to post Share on other sites
cpl_hicks 2 Posted February 1, 2014 Works great thanks! Share this post Link to post Share on other sites