PUBG GPC SCRIPT RELEASE [UPDATED] 2/18/18 STEADY AIM

GPC1 script programming for Titan One. Code examples, questions, requests.

Re: Pubg rps , vertical recoil

Postby J2Kbr » Thu Jan 11, 2018 7:22 pm

Lone wolf 1111 wrote:Has anyone found what works best for pubg. The rps and vertical anti recoil??!! Help

I merged your post/request with the one you linked, here the changes of getting help will be greater.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Pubg rps , vertical recoil

Postby bmpt guard » Thu Jan 11, 2018 8:02 pm

Lone wolf 1111 wrote:Has anyone found what works best for pubg. The rps and vertical anti recoil??!! Help

thought this script had anti recoil? i mean it s decent
User avatar
bmpt guard
Command Sergeant Major
Command Sergeant Major
 
Posts: 142
Joined: Thu May 12, 2016 9:33 pm

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/11/18 jitter fixed

Postby Lone wolf 1111 » Sat Jan 13, 2018 5:54 pm

What part of the code would you take out to get rid of quick scope since they now have type b setting when you hold lt it already goes to ads
User avatar
Lone wolf 1111
Sergeant
Sergeant
 
Posts: 6
Joined: Tue Jan 02, 2018 2:49 am

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/11/18 jitter fixed

Postby bmpt guard » Sat Jan 13, 2018 9:03 pm

Lone wolf 1111 wrote:What part of the code would you take out to get rid of quick scope since they now have type b setting when you hold lt it already goes to ads

changed for you this is without quickscope
came back o warning

Code: Select all
//
// Sat Dec 23 2017 17:23:26
// Script generated by Visual to GPC
//----------------------------------------
 
define ANTI_RECOIL = 25;
define SPOT         =  3;
 
// VARIABLES
// ---------------------------------------------------------
 
int anti_recoil;
int AutoSpotOnOff;
int toggle;
 
init {
 
 AutoSpotOnOff     = get_pvar(SPVAR_7, 1, 2, 2);
}
 
/* ----------------------------------------------------------------------------------------------------------------------
 *  MAIN
**/

main {
    // If RT is pressed, jitter will run//
    if(get_val(XB1_RT)){combo_run(jitter);
    }
    if(get_val(XB1_RT)) {
        combo_run(rapidfire);
    }   
    if((get_val(XB1_LS)) < -95) {
        combo_run(Autorun);
    }
    if (event_press(SPOT)){         
        if (AutoSpotOnOff == 1) {
            AutoSpotOnOff = 2;
        } else if (AutoSpotOnOff == 2) {
            AutoSpotOnOff = 1;
        }
        set_pvar(SPVAR_7, AutoSpotOnOff);
 
        if (AutoSpotOnOff == 1) {
            combo_run(RumbleNotifier);
        }
    }
    if (AutoSpotOnOff == 1) {
        combo_run(AutoSpot);
    }
    if (get_val(XB1_RIGHT)) toggle =  TRUE; // Turn it on when you press DPAD LEFT
    if (get_val(XB1_RS)) toggle = FALSE; // turn it off when you press DPAD LEFT
    if (toggle) {
    }else combo_stop(jitter);
    if (toggle) {
    }else combo_stop(rapidfire);
}
 
combo    RumbleNotifier      {
    set_rumble(RUMBLE_A, 100);
    wait                (300);
    reset_rumble();
}
 
combo Autorun {
    set_val(XB1_LS, 100);
    wait(4000);
    set_val(XB1_LS, 0);
}
 
combo jitter{
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 40);
wait (16);
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 40);
wait (16);
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 0);
}
 
combo rapidfire {
    set_val(XB1_RT, 40);
    wait(10);
    set_val(XB1_RT, 0);
}
 
combo FastReloadIMR {
    set_val(XB1_X, 100);
    wait(40);
    set_val(XB1_X, 0);
    wait(1000); // << Adjustable timing
    set_val(XB1_X, 0);
    set_val(XB1_LX, 0);
    set_val(XB1_LY, -100);
    wait(40);
}
 
combo       AutoSpot         {
    set_val       (SPOT, 100);
    wait                (100);
    set_val         (SPOT, 0);
    wait                (980);
}
 
combo AntiRecoil { // This combo must be the last one
if(get_val(XB1_RT)) {
anti_recoil = get_val(10) + ANTI_RECOIL;
if(anti_recoil > 100) anti_recoil = 100;
set_val(10, anti_recoil);
}
}
User avatar
bmpt guard
Command Sergeant Major
Command Sergeant Major
 
Posts: 142
Joined: Thu May 12, 2016 9:33 pm

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/13/18 adjustments

Postby mseaman1352 » Sat Jan 20, 2018 2:51 am

Can anyone tell me how to get this to work? Sorry for being ignorant, but I loaded the script on my titan one but when I’m in the game it either doesn’t work or freaks out and does this wired switching of views back and forth. Or the rapid fire doesn’t work. Is there some way I’m supposed to turn it off and on?
User avatar
mseaman1352
Private First Class
Private First Class
 
Posts: 3
Joined: Sat Jan 20, 2018 1:58 am

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/13/18 adjustments

Postby Fak3messiah » Tue Jan 23, 2018 6:01 pm

what part of the code do i take out so autorun isn't in it. i tried messing with it but keep getting a warning
they just added auto run to pubg today
User avatar
Fak3messiah
Sergeant First Class
Sergeant First Class
 
Posts: 16
Joined: Fri Jan 19, 2018 12:02 am

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/13/18 adjustments

Postby bmpt guard » Wed Jan 24, 2018 4:32 am

mseaman1352 wrote:Can anyone tell me how to get this to work? Sorry for being ignorant, but I loaded the script on my titan one but when I’m in the game it either doesn’t work or freaks out and does this wired switching of views back and forth. Or the rapid fire doesn’t work. Is there some way I’m supposed to turn it off and on?

ok so aiming is hair trigger to aim just slightlky press if held to long it goes back in and out cause it double taps when you press aim. as for rapid just press right
dpad =on
rs= off

Fak3messiah wrote:what part of the code do i take out so autorun isn't in it. i tried messing with it but keep getting a warning
they just added auto run to pubg today

as requested

Code: Select all
//
// Sat Dec 23 2017 17:23:26
// Script generated by Visual to GPC
//----------------------------------------
 
define ONLY_WITH_SCOPE = FALSE;// Use Anti-recoil only when scoping
define ANTI_RECOIL = 50;       //change "0" to compensate vertical recoil (0 - 100)
define ANTI_RECOIL_LEFT = 50//change this value to compensate to the left (0 - 100)
define ANTI_RECOIL_RIGHT = 50; //change this value to compensate to the right (0 - 100)
 
 
// VARIABLES
// ---------------------------------------------------------
 
int AutoSpotOnOff;
int toggle;
int anti_recoil;
int anti_recoil_left;
int anti_recoil_right;
 
/* ----------------------------------------------------------------------------------------------------------------------
 *  MAIN
**/

main {
    // If RT is pressed, jitter will run//
    if(get_val(XB1_RT)){combo_run(jitter);
    }
    if(get_val(XB1_RT)) {
        combo_run(rapidfire);
    }   
    if(get_val(XB1_LT)) {
        if(get_val(XB1_LT)) {
            combo_run(quickscope);
        } else {
            combo_run(quickscope2);
        }
    }
    if (get_val(XB1_RIGHT)) toggle =  TRUE; // Turn it on when you press DPAD LEFT
    if (get_val(XB1_RS)) toggle = FALSE; // turn it off when you press DPAD LEFT
    if (toggle) {
    }else combo_stop(jitter);
    if (toggle) {
    }else combo_stop(rapidfire);
}
 
combo    RumbleNotifier      {
    set_rumble(RUMBLE_A, 100);
    wait                (300);
    reset_rumble();
}
 
combo jitter{
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 40);
wait (16);
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 40);
wait (16);
set_val(XB1_RT, 40);
wait (15);
set_val(XB1_RT, 0);
}
 
combo rapidfire {
    set_val(XB1_RT, 40);
    wait(10);
    set_val(XB1_RT, 0);
}
 
combo FastReloadIMR {
    set_val(XB1_X, 100);
    wait(40);
    set_val(XB1_X, 0);
    wait(500); // << Adjustable timing
    set_val(XB1_X, 0);
    set_val(XB1_LX, 0);
    set_val(XB1_LY, -100);
    wait(40);
}
 
combo quickscope {
    set_val(XB1_LT, 100);
    wait(10);
    set_val(XB1_LT, 0);
}
 
combo quickscope2 {
    set_val(XB1_LT, 100);
    wait(20);
    set_val(XB1_LT, 0);
    wait(10);
    set_val(XB1_LT, 0);
}
 
combo AntiRecoil { // This combo must be the last one
    if(get_val(XB1_RT)) {
    anti_recoil = get_val(10) + ANTI_RECOIL;
    if(anti_recoil > 100) anti_recoil = 100;
    set_val(10, anti_recoil);
    anti_recoil_left = get_val(9) -ANTI_RECOIL_LEFT;
    if(anti_recoil_left > 100) anti_recoil_left = 100;
    set_val(9, anti_recoil_left);
    anti_recoil_right = get_val(9) +ANTI_RECOIL_RIGHT;
    if(anti_recoil_right > 100) anti_recoil_right = 100;
    set_val(9, anti_recoil_right);
    }
}
User avatar
bmpt guard
Command Sergeant Major
Command Sergeant Major
 
Posts: 142
Joined: Thu May 12, 2016 9:33 pm

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/24/18 fixed rapid/ji

Postby dsferko721 » Wed Jan 24, 2018 10:07 am

Okay also sorry for being a noob here but I am also new to this. How does the autospot work exactly? Is it always on?? I just need an instruction manual for this I feel like lol.
User avatar
dsferko721
Private
Private
 
Posts: 1
Joined: Wed Jan 24, 2018 10:02 am

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/24/18 fixed rapid/ji

Postby bmpt guard » Wed Jan 24, 2018 3:06 pm

dsferko721 wrote:Okay also sorry for being a noob here but I am also new to this. How does the autospot work exactly? Is it always on?? I just need an instruction manual for this I feel like lol.

honestly i couldnt get autospot working. i thought i could but i just left it in there for someone else might have idea or future reference reallly
User avatar
bmpt guard
Command Sergeant Major
Command Sergeant Major
 
Posts: 142
Joined: Thu May 12, 2016 9:33 pm

Re: PUBG GPC SCRIPT RELEASE [UPDATED] 1/24/18 fixed rapid/ji

Postby mseaman1352 » Wed Jan 24, 2018 6:55 pm

Thanks for the help. One issue I noticed is RS off interferes with leaning.
User avatar
mseaman1352
Private First Class
Private First Class
 
Posts: 3
Joined: Sat Jan 20, 2018 1:58 am

PreviousNext

Return to GPC1 Script Programming

Who is online

Users browsing this forum: No registered users and 89 guests