Black Ops 3 Super Slide

This script is an alternative to the G Slide and simply makes you slide then cancel the animation by pressing Triangle twice rapidly, otherwise known as the typical COD "YY Cancel" Although not as fast as the G Slide it is way more consistent and less likely to get patched.
Version1.00
AuthorRize77
Publish DateSun, 31 Jan 2016 - 22:10
Last UpdateSun, 31 Jan 2016 - 22:10
Downloads445
RATE


2

0

Code: Select all
/* *
* GPC SUPER SLIDE SCRIPT
*
    ----------- PLEASE READ ---------------
 
    Place this script into any of your scripts to add "Super Slide"
    Make sure you have After Burner in Perk 1 and no Tactical Grenades
    This script is setup to "Tactical" controller setup. If you don't use "Tactical"
    then change PS4_R3 to PS4_CIRCLE in the combo below.
 
    This script is an alternative to the G Slide and simply makes you slide then cancle the animation
    by pressing Triangle twice rapidly, otherwise known as the typical COD "YY Cancle"
* *********************************************************** */

define SUPER_SLIDE_BUTTON        = PS4_L1;
main {
 
    //Super Slide Mod
    if(event_press(SUPER_SLIDE_BUTTON)) {
            combo_run(SUPERSLIDE);
     }
 }   
combo SUPERSLIDE {
    set_val(PS4_R3, 100);
    wait(150);
    set_val(PS4_R3, 0);
    wait(10);
    set_val(PS4_TRIANGLE, 100);
    wait(15);
    set_val(PS4_TRIANGLE, 0);
    wait(25);
    set_val(PS4_TRIANGLE, 100);
    wait(15);
    set_val(PS4_TRIANGLE, 0);
}