Overwatch: Mercy / Tjorbourne Secondary Quick Switch.

I made this simple script so that while holding L2 you will switch to secondary weapon on Mercy or Tjorborne when you let go of L2 it will auto switch back to primary weapon. This is useful in those quick snap situations where as mercy you can panic unload into the enemy or as tjorborne after you are making emergency repairs you switch right back to hurling molten metal.
Version1.0
Authorwimza
Publish DateTue, 27 Dec 2016 - 15:38
Last UpdateTue, 27 Dec 2016 - 15:38
Downloads201
RATE


2

0

Release Notes: This is a very simple script, if you are using default controls mercy will slow fall while you are holding L2 for secondary weapon and Tjorbourne will shotgun as he switches to the hammer. Also just tapping L2 will switch weapon once and reverse the order in which weapons are switched and switched back when L2 is held, this is again reversed by simply tapping L2.
Code: Select all
//
// Tue Dec 27 2016 15:02:54
// Script created by: Wimza. All permissions granted to re-use if credit given.
//----------------------------------------
 
main {
    if(event_press(PS4_L2)) {
        combo_run(Tap_1);
    }
    if(event_release(PS4_L2)) {
        combo_run(Tap_2);
    }
}
 
combo Tap_1 {
    set_val(PS4_RIGHT, 0);
    wait(10);
    set_val(PS4_RIGHT, 100);
}
 
combo Tap_2 {
    set_val(PS4_RIGHT, 0);
    wait(10);
    set_val(PS4_RIGHT, 100);
}