tactical strobe light only went your aiming with auto spot for ps4

Tactical strobe lighting only went your aiming, this is a script which the flash light you mount to any in game guns, gets turn it into strode light. If you ever watch (Kick Ass) you will know how it effects your eyes. how it works is you press ( R3 (knife)) the set the flash light into strode, in a C,Q,B, in counts it should help you get the up hand and win firefights. You will need to unlock the flash light for your gun it doesn't with the Tactic light and this may get you kicked remember to press R3 to stop. Auto spot start and stop by pressing spot R1.
Version1.00
Authorneb
Publish DateMon, 19 May 2014 - 08:22
Last UpdateMon, 19 May 2014 - 08:22
Downloads82
RATE


0

0

Release Notes: I use to be neb3002, the auto spot happens less just for better game play.
Code: Select all
define StartButton = PS4_R1;
define ComboButton = PS4_R1;
int rapidFireButton = PS4_L2;
define ComboButton1 = PS4_UP;
int rapid_onoff = TRUE;
int hold_time, rest_time;
define RATE_OF_FIRE = 10; // Range: 1 to 25 RPS (Round/s)
 
define HoldTime = 100;
define RestTime = 1542;
 
int run;
init {
      hold_time = 500 / RATE_OF_FIRE;
      rest_time = hold_time - 20;
      if(rest_time < 0) rest_time = 0;
 
}
 
main {
     if(event_press(PS4_R3)) rapid_onoff = !rapid_onoff;
     if(get_val(PS4_L2) && rapid_onoff) {combo_run(RapidFire);
     } else if(combo_running(RapidFire)) {combo_stop(RapidFire);
 
}
    if(run > 0) {
        combo_run(AutomatedCombo);
    } else {
        combo_stop(AutomatedCombo);
 
    }
 
    if(event_press(StartButton)) {
        if(run == 1) {
            run = 0;
        } else {
            run = 1;
        }
    }
}
 
combo AutomatedCombo {
    set_val(ComboButton, 1);
    wait(HoldTime);
    set_val(ComboButton, 0);
    wait(RestTime);
    set_val(ComboButton, 0);
    set_val(ComboButton, 0);
}
 
combo RapidFire {
    set_val(PS4_UP, 100);
    wait(hold_time);
    set_val(PS4_UP, 0);
    wait(rest_time);
    set_val(PS4_UP, 0);
}