Category: 2K25
Author: RobinHood
Description:
Guide
Basic Controls LB Press: Action: Performs a regular jump shot. How it works: When LB is pressed, the right stick (RS) moves to the bottom. When LB is released, RS goes back to the top after a set delay. LB + Turbo: Action: Executes a hop jumper. How it works: The RS follows a similar motion to the regular LB press but tailored for hop jumpers. LS + Turbo: Action: Activates a turbo fadeaway. Adjustable Delays The script includes two adjustable delays: LB Delay: Adjusts the timing for regular jump shots and hop jumpers. Turbo Fade Delay: Adjusts the timing for fadeaway shots. Range: Both delays can be adjusted from 0ms to 300ms in increments of 10ms. Adjusting Delays Enter Adjustable Delay Menu: Hold LT + Menu to access the delay adjustment menu. Use the D-Pad to toggle between LB Delay and Turbo Fade Delay. D-Pad Left/Right: Adjusts the delay in increments of 10ms. D-Pad Up/Down: Switches between the two delays. B Button: Exits the menu
int delay_value = 50; // Initial LB delay value (modifiable in the menu) int fade_delay_value = 50; // Initial LS delay value (modifiable in the menu) int in_menu = 0; // Flag to track if we are inside the menu int menu_option = 0; // 0 = LB delay, 1 = Turbo fade delay int hundreds, tens, ones; // Variables for digit breakdown int i; // Declare loop counter // Storing "AutoExcellentTempo", "Adjust Delay", and "Turbo Fade Delay: " in the data section as ASCII values data ( 65, 117, 116, 111, 69, 120, 99, 101, 108, 108, 101, 110, 116, 84, 101, 109, 112, 111, // "AutoExcellentTempo" 65, 100, 106, 117, 115, 116, 32, 68, 101, 108, 97, 121, // "Adjust Delay" 84, 117, 114, 98, 111, 32, 70, 97, 100, 101, 32, 68, 101, 108, 97, 121, 58, 32 // "Turbo Fade Delay: " ) init { // Load the saved delay values from SPVAR_1 and SPVAR_2 (range 0-300, default to 50 if out of range) delay_value = get_pvar(SPVAR_1, 0, 300, 50); fade_delay_value = get_pvar(SPVAR_2, 0, 300, 50); // Ensure delay_value never defaults to 0 or below the minimum allowed if (delay_value == 0) { delay_value = 50; // Set to default if it's incorrectly set to 0 set_pvar(SPVAR_1, delay_value); // Save the default value to persistent memory } // Ensure fade_delay_value never defaults to 0 or below the minimum allowed if (fade_delay_value == 0) { fade_delay_value = 50; // Set to default if it's incorrectly set to 0 set_pvar(SPVAR_2, fade_delay_value); // Save the default value to persistent memory } } main {File: AutoExcellentTempoV8 2.gpc
Size: 7.7 KiB
View download: [PREMIUM] - Auto Excellent Temp V8 (2K25)