BF4 PS4 vehicle sensitivity

Gtuner Plugins support. MaxAim, MaxRemapper, Combo Magick, Game Rec.

BF4 PS4 vehicle sensitivity

Postby gremlin » Tue Aug 19, 2014 4:36 pm

Hey,
tried the Titan One for the first time today and so far it's working really well in BF4 on my PS4.

The sensitivity in vehicles (turrets in tanks etc.) is really slow though, and increasing the sensitivity of my mouse does not help at all.

Is this a limitation of BF4's vehicle control? (with a controller it's slow, too, but continuous as I don't have to reposition my mouse 10x to finish a complete turn ;))

Thanks a lot
User avatar
gremlin
Staff Sergeant
Staff Sergeant
 
Posts: 11
Joined: Fri Aug 01, 2014 10:45 am

Re: BF4 PS4 vehicle sensitivity

Postby HardcoreGamer » Tue Aug 19, 2014 4:47 pm

There's a script where you can raise the sensitivity on the vehicle, I'm not sure if your using a gamepack or a script, if your using a gamepack then I'm not sure how to do it, but if your using a script you can always add this to the script.

Code: Select all
define SENS_UP = CEMU_EXTRA9; // using the "+" key which is "="
define SENS_DOWN = CEMU_EXTRA8; // using the "-" key
define SENS_RESET = CEMU_EXTRA7; // using the "0" key
define IN_VEHICLE = CEMU_EXTRA6; // using the "v" key
define OUT_VEHICLE = CEMU_EXTRA5; // using the "b" key
define OUT_VEHICLE2 = CEMU_EXTRA4; // Another button when you want your sensitivity back to normal.
define X_AXIS = PS4_RX; // Change this to your console
define Y_AXIS = PS4_RY; // Change this to your console
define SENS_VEHIC_INCREASE = 100; // You can change this value as needed   
int sensMultiply = 1; //This is the counter of how much sensitivity we are adding or not
int inVehicle = 0; // Need to know when I am in a vehicle as I need more sensitivity


main {

// If I am in a vehicle -> Increase sensitivity by SENS_VEHIC_INCREASE + our in game sensitivity changer
if(inVehicle) {
sensitivity( X_AXIS, NOT_USE, 100 + SENS_VEHIC_INCREASE + (10 * sensMultiply));
sensitivity( Y_AXIS, NOT_USE, 100 + SENS_VEHIC_INCREASE + (10 * sensMultiply));
}

// If I press the SENS_UP key, increase sensitivity for vehicles
if(event_press(SENS_UP)) {
sensMultiply = sensMultiply + 1;
}

// If I press the SENS_DOWN key, decrease sensitivity for vehicles
if(event_press(SENS_DOWN)) {
sensMultiply = sensMultiply - 1;
}

// If I press the SENS_RESET key, reset all vehicles sensitivity back to normal
if(event_press(SENS_RESET)) {
sensMultiply = 0;
}

// If I press the IN_VEHICLE key, tell the script that I am now in a vehicle
if(event_press(IN_VEHICLE)) {
inVehicle = 1;
}

// If I press the OUT_VEHICLE key, tell the script that I am now out of a vehicle
if(event_press(OUT_VEHICLE)) {
inVehicle = 0;
}

// If I press the OUT_VEHICLE2 key, tell the script that I am now out of a vehicle
if(event_press(OUT_VEHICLE2)) {
inVehicle = 0;
}


I'm not sure how you have your keyboard keys set up but you can always change it to your liking.
Titan One User's Manual:

http://www.consoletuner.com/kbase/
User avatar
HardcoreGamer
Command Sergeant Major
Command Sergeant Major
 
Posts: 117
Joined: Sun Aug 03, 2014 9:28 pm

Re: BF4 PS4 vehicle sensitivity

Postby gremlin » Wed Aug 20, 2014 6:58 am

Thanks a lot for the script.

Unfortunately this does not increase the speed at all. This seems to be a limitation with the console versions of BF4, as they are missing a sensitivity option for vehicles and don't support fast "infantry like" controls like in the PC version.

Anyway, the script allows me to move the mouse much slower and therefore I don't have to reposition the mouse that often. I think I will get used to it.
User avatar
gremlin
Staff Sergeant
Staff Sergeant
 
Posts: 11
Joined: Fri Aug 01, 2014 10:45 am

Re: BF4 PS4 vehicle sensitivity

Postby J2Kbr » Wed Aug 20, 2014 7:10 am

Correct, it is a limitation of the game. What I do is have a gamepad connected on Titan One, and use it when I jump on a vehicle.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm


Return to Gtuner Plugins Support

Who is online

Users browsing this forum: No registered users and 56 guests