Onaylı Üye
Anybody who can make actual script i have just the source code.
/ This is a PUBG Mobile Recoil Script.
// It will reduce the recoil of your weapon and make it easier for you to hit your targets.
// To use the script, simply bind it to a key in your PUBG Mobile settings.
// Start the script
while(true)
{
// Get the current weapon being used
var current_weapon = getCurrentWeapon();
// Apply the recoil reduction from the script
reduceRecoil(current_weapon);
}
// Function to get the current weapon being used
function getCurrentWeapon()
{
// Get the current weapon being used
var current_weapon = getWeapon();
// Return the current weapon
return current_weapon;
}
// Function to reduce the recoil of the current weapon
function reduceRecoil(weapon)
{
// Get the recoil values
var recoil_x = getRecoilX(weapon);
var recoil_y = getRecoilY(weapon);
// Reduce the recoil by half
recoil_x = recoil_x/2;
recoil_y = recoil_y/2;
// Set the recoil values
setRecoilX(weapon, recoil_x);
setRecoilY(weapon, recoil_y);
}
/ This is a PUBG Mobile Recoil Script.
// It will reduce the recoil of your weapon and make it easier for you to hit your targets.
// To use the script, simply bind it to a key in your PUBG Mobile settings.
// Start the script
while(true)
{
// Get the current weapon being used
var current_weapon = getCurrentWeapon();
// Apply the recoil reduction from the script
reduceRecoil(current_weapon);
}
// Function to get the current weapon being used
function getCurrentWeapon()
{
// Get the current weapon being used
var current_weapon = getWeapon();
// Return the current weapon
return current_weapon;
}
// Function to reduce the recoil of the current weapon
function reduceRecoil(weapon)
{
// Get the recoil values
var recoil_x = getRecoilX(weapon);
var recoil_y = getRecoilY(weapon);
// Reduce the recoil by half
recoil_x = recoil_x/2;
recoil_y = recoil_y/2;
// Set the recoil values
setRecoilX(weapon, recoil_x);
setRecoilY(weapon, recoil_y);
}