Rory McIlroy PGA TOUR.gpc

Rory_McIlroy_perfect_swing_amp_full_spin_for_xboxone.gpc /****************************************************** Script: EA SPORTS Rory McIlroy PGA TOUR Perfect Swing and Full Spin Author: BIGBUBBA7373 System: XBOXONE Controller: XBOXONE GAME: EA SPORTS Rory McIlroy PGA TOUR NOTES: This script is a replica of Tiger Woods Gamepack and have 2 mods: 1) Perfect Swing that disables the X-axis entirely, giving to you a perfectly straight shot every time. 2) Full Spin (by holding down both LB+A buttons and giving the direction of the ball with the left stick.
Version1.00
Authorbigbubba7373
Publish DateTue, 14 Jul 2015 - 00:20
Last UpdateTue, 14 Jul 2015 - 00:20
Downloads84
RATE


0

0

Code: Select all
// GPC Online Library
// Rory_McIlroy_perfect_swing_amp_full_spin_for_xboxone.gpc
 
/******************************************************
 Script:      EA SPORTS Rory McIlroy PGA TOUR Perfect Swing and Full Spin
 Author:      BIGBUBBA7373
 System:      XBOXONE
 Controller:  XBOXONE
 GAME:        EA SPORTS Rory McIlroy PGA TOUR
 NOTES:     
This script is a replica of Tiger Woods Gamepack and have 2 mods:
1) Perfect Swing that disables the X-axis entirely, giving to you
a perfectly straight shot every time.
2) Full Spin (by holding down both LB+A buttons and giving the direction
of the ball with the left stick.
*******************************************************/

 
define SPINBUTTON = XB1_A; // Press A+LB to activate full spin
define LOCK = XB1_LB;
define RAPIDSPIN = 16.6;   // Range: 1 to 25 RPS (Round/s)
 
int hold_time, rest_time;
int A_BTN=0;
init {
    hold_time = 500 / RAPIDSPIN;
    rest_time = hold_time - 20;
    if(rest_time < 0) rest_time = 0;
}
main {
      if(get_val(SPINBUTTON) && get_val (LOCK)){
        combo_run(RapidSpin);}
 else if(combo_running(RapidSpin)) {
        combo_stop(RapidSpin);}
 
      if(get_val(SPINBUTTON)) A_BTN=1;
      if(event_release(SPINBUTTON)) A_BTN=0;
 
      if(A_BTN){
      sensitivity(XB1_RX, 50,100);
      sensitivity(XB1_RX, 50,100);
      }
      else{
      sensitivity(XB1_RX, 50, 1);
      sensitivity(XB1_RX, 50,100);
       }
}
combo RapidSpin {
    set_val(SPINBUTTON, 100);
    wait(30);
    set_val(SPINBUTTON, 0);
    wait(10);
    set_val(SPINBUTTON, 0);
}