Battlefield 4(Ps4) Frag fx SharkV1 v1.0

Load the Script in Plugin MaxAimDI By Dj Teddy Spacel Thanks at Consoletuner Team and J2Kbr * Setings FragFX V1 Ps3 Version * Set the Nunchuk Controller Sensitivity Between 6 and 5 in the middle of 6 and 5 * In Gamesetings * Set in Game Sensitivity 100%
Version1.0
Authorteddy18
Publish DateMon, 7 Mar 2016 - 20:10
Last UpdateMon, 7 Mar 2016 - 20:10
Downloads38
RATE


0

0

Release Notes: 1.0
Code: Select all
/* *
* Battlefield 4(Ps4) FragFX V1 v1.0
* By Dj Teddy Spacel Thanks at Consoletuner Team and J2Kbr
*  Setings FragFX V1 Ps3 Version
*  Set the Nunchuk Controller Sensitivity Between 6 and 5 in the middle of 6 and 5
*  In Gamesetings
*  Set in Game Sensitivity 100%
* *********************************************************** */

 
define ADS_SENSITIVITY = 130; // 100 is Standard Sensitivity 130 means 30% more sensitive
main {
// Hold R1 to aktivate Commorose navigate with Left Stick
if((get_val(PS4_R1)) && (get_ptime(PS4_R1)) >= 550) {swap(PS4_RX, PS4_LX);swap(PS4_RY, PS4_LY);}
 
//ADS sensitivity
if(get_val(PS4_L2))
{sensitivity(PS4_RX,NOT_USE, ADS_SENSITIVITY);
sensitivity(PS4_RY, NOT_USE,ADS_SENSITIVITY); }
 
// FragFX: Sensitivity Adjustment
if(get_val(PS4_L2))
// Scoping not recommended to adjust the sensitivity here adjust the sensitivity in define ADS_SENSITIVITY  Replace the 130 number which you like
{sensitivity(PS4_RX, NOT_USE, 54);
sensitivity(PS4_RY, NOT_USE, 54);}
else
// Not scoping you can adjust the sensitivity here if you like Replace the 85 number which you like
{sensitivity(PS4_RX, NOT_USE, 85);
sensitivity(PS4_RY, NOT_USE, 85);}
 
// Compensate deadzone of the game
deadzone(PS4_RX, PS4_RY, DZ_CIRCLE, 15);
deadzone(PS4_LX, PS4_LY, DZ_CIRCLE, 19);
 
// Mind Point
sensitivity(PS4_RX, 42, NOT_USE);
sensitivity(PS4_RY, 42, NOT_USE);
 
}