Anargy 10 Posted September 4, 2014 Hey guys, I'm currently trying to create an addon and I just need to figure out how to make it work as a VTOL like the Osprey did in Arma 2: Operation Arrowhead. Does anyone know how to make it work like a VTOL; slowly hovering above the ground and when needed it can go as fast as a lightning bolt? Thanks a lot! Share this post Link to post Share on other sites
x3kj 1247 Posted September 4, 2014 it works exactly like in A2:OA ... Share this post Link to post Share on other sites
chortles 263 Posted September 5, 2014 Answer: it's a fixed-wing aircraft with the vtol = 3; parameter. Share this post Link to post Share on other sites
Anargy 10 Posted September 13, 2014 So how do I put that in the config? Just vtol = 3 ? Share this post Link to post Share on other sites
robj 11 Posted September 15, 2014 What aircraft are you using ? Share this post Link to post Share on other sites
super-truite 54 Posted September 18, 2014 You need to "inherit" from a class of Arma 3 planes in the CfgVehicles, then modify the parameter vtol (as well as the other parameters you want or need to change as the name, the path to the 3d model and so on). schematically, after the cfgpatches: class CfgVehicles { class_A; //a class of arma planes from which you inherit class My_VTOL: class_A { model = "blablabla"; displayname = "blalblabla"; vtol = 3; ... }; }; super-copter inbound ;)? Share this post Link to post Share on other sites
Grinher1988 10 Posted September 23, 2014 I saw an VTOL aircraft on armaholic for A3 a couple days ago maybe you could extract and peak at their config.cpp? Share this post Link to post Share on other sites
chortles 263 Posted September 23, 2014 ^ You can do that with my F-35B port for example. Share this post Link to post Share on other sites
Anargy 10 Posted October 25, 2014 Sorry for taking so long to reply, forgot about it *ashamed*. Ehmm, actually, no. I'm helping create a Pelican from the Halo series. http://img4.wikia.nocookie.net/__cb20110527160730/halo/es/images/0/07/H3_-_D77H-TCI.png (471 kB) Also, thanks Chortles for your config and Grinher for the idea :D ---------- Post added at 19:15 ---------- Previous post was at 19:07 ---------- ^ You can do that with my F-35B port for example. Chortles, when I open your config.cpp I don't seem to get any information out of it? Just a link to your thread.. :p Sorry, I'm kinda new to the whole config scripting, etc. Share this post Link to post Share on other sites
Anargy 10 Posted November 23, 2014 ^ You can do that with my F-35B port for example. Nevermind, it worked! It's just that the VTOL is too slow for a pelican, so it's using a helicopter mode now. Anyways, thanks a lot! Share this post Link to post Share on other sites