GTA_V_Online - Character Strength Building Script (capture linked in topic)

Discussion - http://www.consoletuner.com/forum/viewtopic.php?f=6&t=3957
Version6/12/16
AuthorGTAthrowawayaccount
Publish DateMon, 13 Jun 2016 - 00:28
Last UpdateMon, 13 Jun 2016 - 00:28
Downloads239
ForumAnnouncement Topic
RATE


2

2

Release Notes: I just found out that there's an easy way to build strength in freemode without any cops, and only using 1 target, your friend (they wont take any damage). 1) Go to a Bincos clothing store with a motorcycle and a friend. 2) Have your friend go in clothing menu at the mirror in the back of the store (and wait). 3) Drive a motorcycle into the store. (You wont attract police attention, but the store will close and your friend will stay in the clothing menu.) 4) Stand in front of your friend and run the Strength Building Script. Here's a video of this demonstrated. http://www.dailymotion.com/video/x4gws9k
Code: Select all
//Here's a video of the script in action... http://www.dailymotion.com/video/x4fzpjb 
//Here's a link to the job I made for PS4... https://socialclub.rockstargames.com/crew/consoletuner/games/gtav/jobs/job/x8TE9bFLN02axE9SOYottQ
//Here's instructions on how to make the job for other platforms...
//Create a Capture with 20 unarmed, hostile enemies with high accuracy and a 20 meter patrol range all in 1 central location around a prop that a player can stand on.
//Placing a prop near the center for someone to stand on is helpful if a player doesn't wish to participate, but is just there to help out another player.
//Put the team spawn points and respawn points as close as possible to them.
//Put the capture objects and capture points slightly further out.
//Litter the area with Health packs and body armors.
//Set the weapons to Forced Only and the default weapon to the knuckle dusters.
//(I prefer the time and weather to be noon and clear.)
//Set the time to 30 minutes, and when you play the capture with a friend (or a 2nd system), set the End Conditions to ALL POINTS if you want it to last longer than 30 minutes.
 
    int Turbo_Punch = FALSE;
 
  main
    {
 
        if(get_val(PS4_L2) && get_ptime(PS4_L2) > 750 && !Turbo_Punch) 
          { Turbo_Punch = TRUE; }                                             
    else if(Turbo_Punch && event_press(PS4_CROSS))                             
          { Turbo_Punch = FALSE; }                                             
         if(Turbo_Punch && !combo_running(Punch_Turbo))                       
          { combo_run(Punch_Turbo);}                                       
}
    combo Punch_Turbo
      { set_val(PS4_L2, 100);                                             
        set_val(PS4_R2, 0);                                           
        wait(100);                                                         
        set_val(PS4_L2, 100);                                           
        set_val(PS4_R2, 100);                                           
        wait(100); }