Page 1 of 2

NBA 2K19 perfect shot script.... myCareer

PostPosted: Thu Oct 04, 2018 1:22 am
by pele'sghost
My career is the only place I've used it to grind badges.
It has Lay-up L3 and Moving shot(fade away) R3 and square the green Machine for 3's.
If adjustment is needed you just change time and as you gain badges it does change the release time too.
I go to practice and tweak times.
Code: Select all
int shottime = 619; //Adjust time SQUARE is held down. 1000 = 1 second  FADE
int time = 700; //Adjust time SQUARE is held down. 1000 = 1 second  LAY UP
 
main {
     if(get_val(PS4_SQUARE)) {
        combo_run(magick);
        }
        {
  if(event_press(PS4_R3))
  {
    combo_run(HOLDSQUARE);
  }
  if(event_press(PS4_L3))
  {
    combo_run(FADE);
  } 
}
}
combo magick {
    set_val(PS4_SQUARE, 100);
    wait(515);
    set_val(PS4_SQUARE, 0);
}
combo HOLDSQUARE
{
    set_val(PS4_SQUARE, 100);
    wait(shottime);
    set_val(PS4_SQUARE, 0);
}
combo FADE
{
    set_val(PS4_SQUARE, 100);
    wait(time);
    set_val(PS4_SQUARE, 0);
}

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Fri Oct 05, 2018 7:22 am
by J2Kbr
Cool, if possible please also publish on Gtuner's Online Library (Gtuner top menu -> Compiler -> Publish Script). thanks.

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Sun Oct 07, 2018 4:15 pm
by pele'sghost
I've been tweaking and playing around with this script. I now have 3 pt. Lay-up Fade shot and freethrows.
All this is in My career with Jumpshot 49-RudyGay-Kevin Durant 75%-25%..made on shot creator
Code: Select all
int shottime = 619; //Adjust time SQUARE is held down. 1000 = 1 second  FADE
int time = 700; //Adjust time SQUARE is held down. 1000 = 1 second  LAY UP
int freethrow = 750;
 
main {
     if(get_val(PS4_SQUARE)) {
        combo_run(magick);
        }
        {
  if(event_press(PS4_R3)) {
    combo_run(HOLDSQUARE);
  }
  if(event_press(PS4_L3)) {
    combo_run(FADE);
  }
  if(event_press(PS4_TOUCH)) {
    combo_run(EASY)
}
}
}
combo magick {
    set_val(PS4_SQUARE, 100);
    wait(514);
    set_val(PS4_SQUARE, 0);
}
combo HOLDSQUARE
{
    set_val(PS4_SQUARE, 100);
    wait(shottime);
    set_val(PS4_SQUARE, 0);
}
combo FADE
{
    set_val(PS4_SQUARE, 100);
    wait(time);
    set_val(PS4_SQUARE, 0);
} 
combo EASY
{
    set_val(PS4_SQUARE, 100);
    wait(freethrow);
    set_val(PS4_SQUARE, 0);
 
}
 

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Sun Oct 07, 2018 9:18 pm
by pele'sghost
if anyone wants to work park timing out then PM me we need 4 for 2's or 6 for 3v3

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Sat Oct 27, 2018 11:46 pm
by xII GAMBIT IIx
Pele have you figured out a setup for the Online latency

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Fri Nov 02, 2018 5:59 pm
by pele'sghost
No not really I do have some ms times but you just tweak it till you get greens on open shots...If a group was all working on it then it would be better...I mean all on the same court...

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Mon Nov 12, 2018 7:36 pm
by Technoobie
Hi everyone and Mods,

I load the script to #3 slot on my Titan one (xb1), when I ready to play the game and select #3 slot, instead of showing 3 it shows E. Script doesn't seems to work.

Ps... I did not get any error when scanning the script.

My Titan one device is working perfectly. I also currently uses it for BO4.

Anyone had the same issue. Any suggestions?

Thanks I'm advance.

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Tue Nov 13, 2018 8:54 am
by J2Kbr
Technoobie wrote:I load the script to #3 slot on my Titan one (xb1), when I ready to play the game and select #3 slot, instead of showing 3 it shows E. Script doesn't seems to work.

Are you sure the device is showing E and is not the 3 up side down? In case you confirm the device is showing E, does the E blinks? If yes, this means the device plugged on the Titan One input port is not supported.

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Thu Mar 14, 2019 1:51 pm
by Smeedly
Script not working for me. Using PS4 Pro, NBA 2K 19, on slot 1 og Titan Two
No errors on compile or test/debug. Enter game , go to gym to test and no timed release. Suggestions? Plz help!

Code: Select all
#pragma METAINFO("Titan Green", 1, 0, "Console Tuner")
 
#include <ps4.gph>
int shottime = 619; //Adjust time SQUARE is held down. 1000 = 1 second  FADE
int time = 700; //Adjust time SQUARE is held down. 1000 = 1 second  LAY UP
int freethrow = 750; //Jumpshot 49-Rudy Gay-Kevin Durant-75%-25%
 
main {
     if(get_val(PS4_SQUARE)) {
        combo_run(magick);
        }
        {
  if(event_active(PS4_R3)) {
    combo_run(HOLDSQUARE);
  }
  if(event_active(PS4_L3)) {
    combo_run(FADE);
  }
  if(event_active(PS4_TOUCH)) {
    combo_run(EASY)
}
}
}
combo magick {
    set_val(PS4_SQUARE, 100);
    wait(514);
    set_val(PS4_SQUARE, 0);
}
combo HOLDSQUARE
{
    set_val(PS4_SQUARE, 100);
    wait(shottime);
    set_val(PS4_SQUARE, 0);
}
combo FADE
{
    set_val(PS4_SQUARE, 100);
    wait(time);
    set_val(PS4_SQUARE, 0);
} 
combo EASY
{
    set_val(PS4_SQUARE, 100);
    wait(freethrow);
    set_val(PS4_SQUARE, 0);
 
}

Re: NBA 2K19 perfect shot script.... myCareer

PostPosted: Wed Mar 20, 2019 2:51 am
by roadrunnerszn
pele'sghost wrote:I've been tweaking and playing around with this script. I now have 3 pt. Lay-up Fade shot and freethrows.
All this is in My career with Jumpshot 49-RudyGay-Kevin Durant 75%-25%..made on shot creator
Code: Select all
int shottime = 619; //Adjust time SQUARE is held down. 1000 = 1 second  FADE
int time = 700; //Adjust time SQUARE is held down. 1000 = 1 second  LAY UP
int freethrow = 750;
 
main {
     if(get_val(PS4_SQUARE)) {
        combo_run(magick);
        }
        {
  if(event_press(PS4_R3)) {
    combo_run(HOLDSQUARE);
  }
  if(event_press(PS4_L3)) {
    combo_run(FADE);
  }
  if(event_press(PS4_TOUCH)) {
    combo_run(EASY)
}
}
}
combo magick {
    set_val(PS4_SQUARE, 100);
    wait(514);
    set_val(PS4_SQUARE, 0);
}
combo HOLDSQUARE
{
    set_val(PS4_SQUARE, 100);
    wait(shottime);
    set_val(PS4_SQUARE, 0);
}
combo FADE
{
    set_val(PS4_SQUARE, 100);
    wait(time);
    set_val(PS4_SQUARE, 0);
} 
combo EASY
{
    set_val(PS4_SQUARE, 100);
    wait(freethrow);
    set_val(PS4_SQUARE, 0);
 
}
 

if you could, could you post your entire shooting set up?