GTA_V_Online - Quick_Suicide and Turbo_Suicide

//Discussion - http://www.consoletuner.com/forum/viewtopic.php?f=6&t=3984 ______________________________________________________________________________ //DO NOT HAVE A SILENCER ON YOUR PISTOL or else you'll take a cyanide capsule which takes longer (too long). ______________________________________________________________________________ //To activate QUICK_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks together (inward... Left stick to the right, and right stick to the left) . ______________________________________________________________________________ //To activate TURBO_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks apart (outward... Left stick to the left, and right stick to the right) . ______________________________________________________________________________ //To deactivate TURBO_SUICIDE, press X for PS or A for XB. (or just RUN)
Version6.16.16
AuthorGTAthrowawayaccount
Publish DateThu, 16 Jun 2016 - 14:33
Last UpdateFri, 17 Jun 2016 - 17:00
Downloads206
ForumAnnouncement Topic
RATE


1

2

Release Notes: //Discussion - http://www.consoletuner.com/forum/viewtopic.php?f=6&t=3984 ______________________________________________________________________________ //DO NOT HAVE A SILENCER ON YOUR PISTOL or else you'll take a cyanide capsule which takes longer (too long). ______________________________________________________________________________ //To activate QUICK_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks together (inward... Left stick to the right, and right stick to the left) . ______________________________________________________________________________ //To activate TURBO_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks apart (outward... Left stick to the left, and right stick to the right) . ______________________________________________________________________________ //To deactivate TURBO_SUICIDE, press X for PS or A for XB. (or just RUN)
Code: Select all
//Discussion - http://www.consoletuner.com/forum/viewtopic.php?f=6&t=3984
 
//DO NOT HAVE A SILENCER ON YOUR PISTOL or else you'll take a cyanide capsule which takes longer (too long).
 
//To activate QUICK_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks together (inward... Left stick to the right, and right stick to the left) .
 
//To activate TURBO_SUICIDE, hold L1 (LB), R1 (RB), and push both joysticks apart (outward... Left stick to the left, and right stick to the right) .
 
//To deactivate TURBO_SUICIDE, press X for PS or A for XB. (or just RUN)
 
    int Turbo_On = FALSE;
 
    main {
        if(get_val(PS4_L1) && get_val(PS4_LX) >=90 && get_val(PS4_R1) && get_val(PS4_RX) <=-90)
        {combo_run(Quick_Suicide);}
 
 
        if(get_val(PS4_L1) && get_val(PS4_R1) && get_val(PS4_LX) <=-90 && get_val(PS4_RX) >=90)
        {Turbo_On = TRUE;}
 
        else if(Turbo_On && event_press(PS4_CROSS))
        {Turbo_On = FALSE;}
 
        if(Turbo_On && !combo_running(Turbo_Suicide))
        {combo_run(Turbo_Suicide);}
    }
 
        combo Quick_Suicide
        {   
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0)
        set_val(PS4_RX, 0)
        set_val(PS4_RY, 0)
        set_val(PS4_LX, 0)
        set_val(PS4_LY, 0);
        wait(100);   
        set_val(PS4_TOUCH, 100)
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0)
        set_val(PS4_RX, 0)
        set_val(PS4_RY, 0)
        set_val(PS4_LX, 0)
        set_val(PS4_LY, 0);
        wait(666);
        set_val(PS4_UP, 100)
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0);
        wait(100);
        set_val(PS4_CROSS, 100) //KILL YOURSELF
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0);
        wait(100);
        set_val(PS4_CROSS, 0);
        }
 
    combo Turbo_Suicide
    {
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0)
        set_val(PS4_RX, 0)
        set_val(PS4_RY, 0)
        set_val(PS4_LX, 0)
        set_val(PS4_LY, 0);
        wait(100);   
        set_val(PS4_TOUCH, 100)
        set_val(PS4_L1, 0)
        set_val(PS4_L2, 0)
        set_val(PS4_R1, 0)
        set_val(PS4_R2, 0);
        wait(666);
        set_val(PS4_UP, 100)
        wait(100);
        set_val(PS4_CROSS, 100) //KILL YOURSELF
        wait(100);
        set_val(PS4_CROSS, 0)
 
        set_val(PS4_CIRCLE, 100) //just
        wait(100);               //in case
        set_val(PS4_CIRCLE, 0)   //the
        wait(100);               //interaction
        set_val(PS4_CIRCLE, 100) //menu
        wait(100);               //doesn't
        set_val(PS4_CIRCLE, 0)   //open
        wait(100);               //and
        set_val(PS4_CIRCLE, 100) //the
        wait(100);               //phone
        set_val(PS4_CIRCLE, 0)   //pulls up
        wait(100);               //instead
 
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        wait(666);
        }