Page 1 of 1

COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 12:27 am
by macro7boo
I want to write a CODBO4 rapid fire code (or jitter code) so that I can assign the code to a specific button on the controller. I don't want to use the game pack because I need a specific button layout and I want the timing to be specific. Does anyone know what semi automatic rifles or other damaging weapons would be awesome to use with rapid fire or jitter? I am downloading the game to my xbox one right now so I don't think I will have the weapons unlocked just yet. I hear the SG12 (Brecci 3.0) is good with jitter mod. what do you think?

Brecci 3.0 jitter mod video
https://www.youtube.com/watch?v=Uc5O3jkzJJY

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 3:49 am
by Mad

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 8:34 am
by macro7boo
thank you Mad for your reply.

unfortunately i couldn't get the jitter code to work with the SG12 shotgun, but i did write a rapid fire code that worked with both the Auger DMR and the SG12. the code is posted below... I want to add code that will click in the "Left Stick" to sprint when i move the left stick 75% forward. can someone help me with the code for that please? I don't want to use the gamepack or the jitter code listed in Mad's post above.

Code: Select all
main {
      if(get_val(XB1_RT)) {
         combo_run(rf);}}
 
combo rf {
          set_val(XB1_RT, 100);
          wait(20);
          set_val(XB1_RT, 0);
          wait(20);
 
}

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 9:04 am
by Mad
The jitter is for MOG12 and ballistic knives. SG12 has been patched. I think the rampage is still going though.

Code: Select all
main {
  if (get_val(XB1_RT)) {
    combo_run(rf);
  }
  if (get_val(XB1_LY) <= -75.00) {
    combo_run(Sprint);
  }
} 
 
combo Sprint {
  set_val(XB1_LS, 100);
  wait(100);
}
 
combo rf {
  set_val(XB1_RS, 100);
  wait(20);
  set_val(XB1_RT, 0);
  wait(20);
}

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 9:37 am
by macro7boo
Mad, I went to a custom game and looked through all the weapons and didn't see a MOG12. I didn't see a Rampage either. where can I see these guns?

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 9:57 am
by Mad
Under shotguns, the mog will be there but the rampage is unlocked via reserve crates.

Re: COD Black Ops 4 rapid fire help

PostPosted: Sat Jul 20, 2019 10:50 am
by macro7boo
Mad, I now see the mog 12. what type of weapon is the rampage? Also I just posted new code below. you forgot to add the code that turns off the sprint so i added it myself. I just want to know how to write a short bit of code that will let me do the jitter, if the jitter is still fast enough and worth it that is. the other guy's code is like a mile long and its hard to read. :cry: This stuff is supposed to be simple right? LOL! :smile0203:

Code: Select all
main {
  if (get_val(XB1_RT)) {
    combo_run(rf);
  }
  if (get_val(XB1_LY) <= -75.00) {
    combo_run(Sprint1);
  }
 
  if (get_val(XB1_LY) > -75.00) {
    combo_run(Sprint2);
  }
  }
 
combo Sprint1 {
  set_val(XB1_LS, 100);
  //wait(100);
}
 
combo Sprint2 {
  set_val(XB1_LS, 0);
  //wait(100);
}
 
 
 
combo rf {
  set_val(XB1_RT, 100);
  wait(20);
  set_val(XB1_RT, 0);
  wait(20);
}

Re: COD Black Ops 4 rapid fire help

PostPosted: Mon Jul 22, 2019 8:37 pm
by derominus
sg12 isnt even patched

Re: COD Black Ops 4 rapid fire help

PostPosted: Tue Jul 23, 2019 2:19 pm
by macro7boo
can someone please post the button combination for a jitter? Be sure that it is the correct button combination please. :innocent_smile_1: