Customizable COD Sniper Mod (BETA)

Hello my dudes, Description is in the script. Please try this out on different COD's and tell me what you think. This was made for Xbox 360 BTW.
Version1.1.1
AuthorSwift Skymin
Publish DateThu, 1 Jun 2017 - 22:00
Last UpdateFri, 2 Jun 2017 - 23:02
Downloads260
RATE


1

0

Release Notes: Tuned the start time of the Kill script for the Right Analog stick
Code: Select all
// GPC Online Library
// customizable_cod_sniper_mod_beta.gpc
 
// GPC Online Library
// customizable_cod_sniper_mod_beta.gpc
 
//
// Thu Jun 01 2017 16:24:24
//
// Hello Welcome to The Epic sniper mod! This is still being worked on so it can work on all COD Titles. Here are some features
// ----------------------------------------------------------------------------------------------------------------------------
//
// * Auto Hold Breath
//
// * RT Kills the right stick input for half a mill sec for a steady shot
//
// * Adjustable Quicksope mod (Optional)
//
main {
    if((get_val(XB360_LT)) >= 95) {
        set_val(XB360_LS, 100);
    }
    if((get_val(XB360_RT)) && (get_ptime(XB360_RT)) <= 138) {            // This is the kill script for the right analog stick. It's recommended that you don't delete this script. You can adjust this, of course.
        set_val(XB360_RX, 3);
        set_val(XB360_RY, 2);
    }
}
 
combo Tap_1 {
    set_val(XB360_RT, 0);
    wait(400);
    set_val(XB360_RT, 100);                                              // This is the Quickscope mod, Highlight all up to line 33 and right click to delete
    wait(40);
    set_val(XB360_RT, 100);
}