macieksoft 11 Posted September 27, 2015 Hi. I am trying to make floating balloons in ArmA 3. There are actually 2 types of balloons in ArmA 3, water filled and air filled. I want to make hellium filled and a floating one (that will float in and and do not go up or down). Hellium filled would be used as range targets and floating in air would be used as remote controled balloon blimp range target something like this: How to make them floating? I want to use alternative config to add 2 more types of balloons (and do not change existing ones). I know how to make configs but i am not sure what kind of parameter should i use to make them behave the way i want. I tried gravityFactor = 0; But it did not changed anything. Can anyone tell me what kind of parameter can make them float? And will they pop like in the video when i attach bullet in front of them? And remote control script is not a problem for me, i can do it using set velocity commands. Share this post Link to post Share on other sites
Ranwer135 308 Posted September 30, 2015 I know this is a script command, but try this in your mission: while {!isNull myBalloon} do { myBalloon setPos (myBalloon modelToWorld [0,0,1]); sleep 0.2; }; It will raise the balloon by 1 meter every 0.2 seconds. (probably not efficient, but otherwise I have no clue) Share this post Link to post Share on other sites
x3kj 1247 Posted October 1, 2015 you are better of using the standard airplane flight model (utilising VTOL hover) or the basic helicopter model and tweak it until it fits your needs... it will be tricky however and i wouldn't expect great results from it. Share this post Link to post Share on other sites
Von Quest 1163 Posted October 2, 2015 I'd love to see you pull this off. I have a similar idea for a future project dirigible. Share this post Link to post Share on other sites
ArmaFiend 122 Posted October 27, 2015 i have been modeling an arostat for FOBs. If someone figures a way to do this, I would love for it to be lower and raise-able Share this post Link to post Share on other sites