Page MenuHomeFeedback Tracker

Some questions about the V44X VTOL
New, NormalPublic

Description

V-44 X In the server, due to the fact that the throttle will instantly change to 100, the V44X is unable to taxi on land and can only take off and land vertically. Please fix this.

Details

Severity
Major
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
General
Steps To Reproduce

Implementation steps.

  1. Join a squad on the server (must be a squad member)
  2. Launch the V-44 X VTOL flying vehicle.
  3. Throttle will instantly go from 0 to 100 upon startup and cannot be lowered (on land)
Additional Information

Temporary Solution.
Talk to the squad leader (not everyone will listen to you) and get the captain's position, or form your own squad (alone, you know).

Event Timeline

19057 created this task.Jul 19 2023, 3:33 PM

I found the solution, but not sure of the practicality:

fn_clientEventGetInMan.sqf
if (
(_vehicle isKindOf 'VTOL_Base_F') &&
(_position isEqualTo 'driver')
) then {
_vehicle spawn {

		private _vehicle = _this;
		for '_i' from 0 to 1 step 0 do {
			if ((vehicle player) isNotEqualTo _vehicle) exitWith {};
			doStop player;
			sleep 10;
		};

};
};

Does this happen on dev?

19057 added a comment.Jul 21 2023, 6:38 AM
This comment was removed by 19057.
19057 added a comment.Jul 21 2023, 6:39 AM

Does this happen on dev?

No, it's on the official version.

This is the same as T169494 and T126282, and a fix for that is currently on dev branch, for release in 2.14 assuming the fix works.

NikkoJT removed a subscriber: NikkoJT.Jul 21 2023, 10:01 AM
This comment was removed by BIS_fnc_KK.