GTA V - Mash X (SuperSprint, Cycle, Swim, Etc)

This script rapidly taps (X PS3) (A 360) when you simply hold the button in. If you have Max Stamina, then you can supersprint indefinitley with this, without RSI. Great for running the Marathons & Buying Ammunition. (Or anything that requires you to Tap X (A) a crapload of times in rapid succession for extended amounts of time) INSTRUCTIONS: Hold SELECT & Press X(PS3) A(360) to toggle the script On/Off. LED 1 = Off. | LED 4 = On. | Now, Simply Hold X (A) to have it auto-press rapidly!
Version1.0
AuthorDazzaJay
Publish DateTue, 29 Apr 2014 - 05:24
Last UpdateTue, 29 Apr 2014 - 05:24
Downloads440
RATE


1

0

Release Notes: Tested on PS3 with CronusMax
Code: Select all
/*********************************************************************************************
*      ____          __   __            __         _____  __              __ _               *
*     / __ \ ____   / /_ / /_   ____   / /___     / ___/ / /_ __  __ ____/ /(_)____   _____  *
*    / /_/ // __ \ / __// __ \ / __ \ / // _ \    \__ \ / __// / / // __  // // __ \ / ___/  *
*   / ____// /_/ // /_ / / / // /_/ // //  __/   ___/ // /_ / /_/ // /_/ // // /_/ /(__  )   *
*  /_/     \____/ \__//_/ /_/ \____//_/ \___/   /____/ \__/ \__,_/ \__,_//_/ \____//____/    *
*  Pothole Studios Gaming Network - www.PotholeStudios.com - https://plus.google.com/+PSGN   *
*                                                                                            *
**********************************************************************************************
*                                                                                            *
*  GTA V - Mash X (PS3) / Mash A (360)                                                       *
*  This script rapidly taps (X PS3) (A 360) when you simply hold the button in.              *
*  If you have Max Stamina, then you can supersprint indefinitley with this, without RSI.    *
*  Great for running the Marathons & Buying Ammunition. (Or anything that requires you to    *
*  Tap X (A) a crapload of times in rapid succession for extended amounts of time)           *
*                                                                                            *
*  INSTRUCTIONS: Hold SELECT & Press X(PS3) A(360) to toggle the script On/Off.              *
*  LED 1 = Off. | LED 4 = On. | Now, Simply Hold X (A) to have it auto-press rapidly!        *
*                                                                                            *
*********************************************************************************************/

 
define INITIAL_STATE = FALSE;
 
int mash_is_on = INITIAL_STATE;
 
main {
set_led(LED_1, 1);
set_led(LED_4, 0);
 
    if(get_val(PS3_SELECT) && event_press(PS3_CROSS)) {
       mash_is_on = !mash_is_on;
    }
    if(mash_is_on) {
       set_led(LED_1, 0);
       set_led(LED_4, 1);
    }
    if(mash_is_on && get_val(PS3_CROSS) > 10 ){
        combo_run(MashX);
    } else if(combo_running(MashX)) {
        combo_stop(MashX);
    }
}
 
combo MashX {
    set_val(PS3_CROSS, 100);
    wait(50);
    set_val(PS3_CROSS, 0);
    wait(50);
}