AJsNHL2011SlapshotCombo

This combo allows paraplegics and amputees with (LEFT hand function only), to play EA Sports NHL2011 (and likely newer versions). This combo allows the user to take a slapshot by pulling and releasing the L2 button. I have also remapped the wristshot feature to the L1 button. Now a Lefty can play all the functions of NHL2011 with one hand.
Version1.00
AuthorDamnSkippy
Publish DateSun, 27 Jul 2014 - 18:17
Last UpdateSun, 27 Jul 2014 - 18:17
Downloads69
RATE


1

0

Release Notes: THANKS to KIttyDawn on the ControllerMax forums for creating this script, and teaching me in the process. The timings seem very good for the slapshot. I will tweak them and test them in the practice mode to test slapshot speed.
Code: Select all
/* *
* EA Sports NHL2011 Hockey Slapshot Combo and Wristshot remap for paraplegics and amputees
* This script is designed to allow one handed players (left handed) to skate and shoot using the
* left side of the controller only.  The L2 button now automatically performs a slapshot and the L1 a wristshot
* THANKS to KittyDawn at the device.com forums for creating this combo and teaching me
* how to script analog joystick combos.  Search for DamnSkippy on the GTuner uploads for the PS3 for other
* one handed mods and combos for leftys. 
* *********************************************************** */

 
int slapshot;
 
main {
 
    if (event_press(PS3_SELECT)) {slapshot = !slapshot;}// Press select with enable/disable the combo
 
    if (slapshot && event_press(PS3_L2)) {combo_run (slapsht);}
    if (get_val(PS3_L1)) {set_val(PS3_RY, -100);}
 
}
 
combo slapsht {
 
    set_val(PS3_RY, 100);
    wait (100);
    set_val(PS3_RY, 0);
    wait (100);
    set_val(PS3_RY, -100);
    wait (100);
 
}