US333Nate 12 Posted September 17, 2013 (edited) I have searched the inter webs mightily and cannot find this. I know its a matter of opinion, blah blah blah. I dont want to talk about that, I just want to know if anybody knows of a script that can disable autohover(and by that I mean that I am an admin and would like to remove it from my server so that NO player can use it). any ideas or leads are MUCH appreciated. Thank you VERY MUCH to whomever can help on this. Edited September 17, 2013 by US333Nate Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 Ive got beans for you Share this post Link to post Share on other sites
boneboys 7988 Posted September 17, 2013 If game is set to veteran I believe this disables Auto-Hover. This is not the answer you are looking for but it might give you a lead. Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 No this does not disable it. there is to be some scripting done in order to solve this.. but thanks Share this post Link to post Share on other sites
boomgoesthedino 2 Posted September 17, 2013 Every server I have ever joined gave me the option to either have it on or off. I turn it on for landing. but other than that I hate it. Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 No, I'm talking about removing it completely. So that it is not an option/ cannot be used. Share this post Link to post Share on other sites
SmashT 10907 Posted September 17, 2013 (edited) Found this, it says the same approach can be used to disable autohover, ArmA scripting is another language to me though.Launch with getInEH: // Description// Restrict manual fire use according to the mission parameter. private ["_vehicle"]; _vehicle = _this select 0; while {true} do{if ((_vehicle != (vehicle player)) || (!(alive _vehicle))) exitWith {};if (isManualFire _vehicle) then{player action ["manualFireCancel",_vehicle];};sleep 0.01;}; You can also disable autoHover with the same approach.http://armastack.redhammer.su/index.php/471 Also this which might give you an idea on how as this disables it when above 18kph and enables it automatically when under 18kph.Just put this in the init file of your mission and it will work with any helicopter you'll board. Autohover automaticlly when moving less then 18Kph and disable autohover when moving faster then 18Kph [] spawn {while {true} do{if (driver vehicle player == player && vehicle player iskindof "Helicopter") then{if(abs(speed vehicle player ) > 18) then{player action ["AutoHoverCancel",vehicle player ];} else{player action ["AutoHover",vehicle player];};};sleep 0.05;};};http://forums.bistudio.com/archive/index.php/t-122068.html Edited September 17, 2013 by SmashT 1 Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 (edited) Thanks a lot man, i havnt found this yet. I'll look into it... I have seen the second one, i havnt been able to get it to work. im testing the first one now.. Changing Manual fire to Autohover.. I think I may be putting them in the wrong place or somthing.. Edited September 17, 2013 by US333Nate Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 Im still trying these out. So far either absolutely nothing is affected, or the server will not load. If anyone could help with specifics on how/where to put these. It says the init, but im trying that and its not working.. Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 i do not think this should go into the init.sqf. I have had no luck. It should be it own separate thing, like auto refuel... Share this post Link to post Share on other sites
SmashT 10907 Posted September 17, 2013 If you don't have any luck here the folk at http://opendayz.net/ might be able to help. Share this post Link to post Share on other sites
US333Nate 12 Posted September 17, 2013 Roger that. I will post any solutions that i find on here... Share this post Link to post Share on other sites
US333Nate 12 Posted September 18, 2013 still looking for help at this time... Share this post Link to post Share on other sites