Aim assist, script author snake7210402PL
1 post
• Page 1 of 1
Aim assist, script author snake7210402PL
// Script author: PSN snake7210402PL (Kuba Wąż)
// This GPC script is designed to improve aiming when the L2 button is pressed
// It gently adjusts aiming to help with target acquisition
// WARNING: Using this script may violate the terms of service of many games and lead to account bans
define AIM_ADJUST = 20; // Define the amount of aim adjustment
define AIM_DELAY = TRUE; // Define the delay in milliseconds for adjustment
int aiming = FALSE;
main {
if (get_val(PS4_L2) > 50) { // If L2 is pressed more than halfway
aiming = TRUE;
} else {
aiming = FALSE;
}
if (aiming) {
combo_run(AimAssist);
} else {
combo_stop(AimAssist);
}
}
combo AimAssist {
wait(AIM_DELAY);
set_val(PS4_RX, AIM_ADJUST); // Adjust the X axis of the right stick
wait(AIM_DELAY);
set_val(PS4_RX, -AIM_ADJUST); // Adjust the X axis of the right stick back
wait(AIM_DELAY);
set_val(PS4_RY, AIM_ADJUST); // Adjust the Y axis of the right stick
wait(AIM_DELAY);
set_val(PS4_RY, -AIM_ADJUST); // Adjust the Y axis of the right stick back
}
How to improve the movement of the right analog stick to make aiming smoother without jitter?
I'm from Poland, my English is not perfect.
// This GPC script is designed to improve aiming when the L2 button is pressed
// It gently adjusts aiming to help with target acquisition
// WARNING: Using this script may violate the terms of service of many games and lead to account bans
define AIM_ADJUST = 20; // Define the amount of aim adjustment
define AIM_DELAY = TRUE; // Define the delay in milliseconds for adjustment
int aiming = FALSE;
main {
if (get_val(PS4_L2) > 50) { // If L2 is pressed more than halfway
aiming = TRUE;
} else {
aiming = FALSE;
}
if (aiming) {
combo_run(AimAssist);
} else {
combo_stop(AimAssist);
}
}
combo AimAssist {
wait(AIM_DELAY);
set_val(PS4_RX, AIM_ADJUST); // Adjust the X axis of the right stick
wait(AIM_DELAY);
set_val(PS4_RX, -AIM_ADJUST); // Adjust the X axis of the right stick back
wait(AIM_DELAY);
set_val(PS4_RY, AIM_ADJUST); // Adjust the Y axis of the right stick
wait(AIM_DELAY);
set_val(PS4_RY, -AIM_ADJUST); // Adjust the Y axis of the right stick back
}
How to improve the movement of the right analog stick to make aiming smoother without jitter?
I'm from Poland, my English is not perfect.
-
kubawaz - Sergeant
- Posts: 7
- Joined: Sun Dec 29, 2019 11:41 pm
1 post
• Page 1 of 1
Return to GPC1 Script Programming
Who is online
Users browsing this forum: No registered users and 177 guests