Disable AutoHover

D00MSAY3R

New Member
Hello, I am trying to disable Autohover on my server. I am not a scripting genius, but i can copy and paste like a boss. I have found some things on forums that instruct you to add a few lines in the init file. These are not working. Please, any help with this would be awesome. One of the Scripts I found was to limit AH to certatin speeds. like if your going faster than 18kph it will disable AH. that would be just fine, i could change it to 1kph and be perfectly happy with it.

[] spawn {
while (alive player) do
{
if (local player && driver vehicle player == player && vehicle player != player && vehicle player iskindof "Helicopter") then
{
if((abs(speed vehicle player ) > 18) || (abs(speed vehicle player ) < -18)) then
{
player action ["AutoHoverCancel",vehicle player ];
} else
{
player action ["AutoHover",_this];
};
};
sleep 0.05;
};
};


the instructions to simply add this to the init do not work. Please help.
 
Back
Top