Call Of Duty Blackops 3(Ps4) Frag fx SharkV1 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 Maximum 14
Version1.0
Authorteddy18
Publish DateSun, 13 Mar 2016 - 20:44
Last UpdateSun, 13 Mar 2016 - 20:44
Downloads69
RATE


1

1

Release Notes: 1.0
Code: Select all
/* *
* Call Of Duty Blackops 3(Ps4) Frag fx SharkV1 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 Maximum 14
* *********************************************************** */

define ADS_SENSITIVITY = 259; // 100 is Standard Sensitivity 130 means 30% more sensitive
main {
 
//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, 46);
sensitivity(PS4_RY, NOT_USE, 46);}
else
// Not scoping you can adjust the sensitivity here if you like Replace the 85 number which you like
{sensitivity(PS4_RX, NOT_USE, 90);
sensitivity(PS4_RY, NOT_USE, 90);}
 
   // Compensate deadzone of the game
deadzone(PS4_RX, PS4_RY, DZ_CIRCLE, 10);
 
// Mind Point
sensitivity(PS4_RX, 41, NOT_USE);
sensitivity(PS4_RY, 41, NOT_USE);
 
}